Skip to content 

IDeltaHandlerStrategy Interface

Packages > @fluidframework/container-definitions > IDeltaHandlerStrategy

Interface used to define a strategy for handling incoming delta messages

Signature:

export interface IDeltaHandlerStrategy 

Properties

List of properties of this interface
Property Type Description
process (message: ISequencedDocumentMessage) => IProcessMessageResult Processes the message.
processSignal (message: ISignalMessage) => void Processes the signal.

Events

process

Processes the message.

Signature:

process: (message: ISequencedDocumentMessage) => IProcessMessageResult;

processSignal

Processes the signal.

Signature:

processSignal: (message: ISignalMessage) => void;