Skip to main content
Version: v1

IDeltaHandlerStrategy Interface

Interface used to define a strategy for handling incoming delta messages

Signature

export interface IDeltaHandlerStrategy

Properties

Property Type Description
process (message: ISequencedDocumentMessage) => void Processes the message.
processSignal (message: ISignalMessage) => void Processes the signal.

Property Details

process

Processes the message.

Signature

process: (message: ISequencedDocumentMessage) => void;

Type: (message: ISequencedDocumentMessage) => void

processSignal

Processes the signal.

Signature

processSignal: (message: ISignalMessage) => void;

Type: (message: ISignalMessage) => void