Skip to main content
Version: v1

IPendingMessage Interface

This represents a message that has been submitted and is added to the pending queue when submit is called on the ContainerRuntime. This message has either not been ack'd by the server or has not been submitted to the server yet.

Signature

export interface IPendingMessage

Properties

Property Type Description
clientSequenceNumber number
content any
localOpMetadata unknown
messageType ContainerMessageType
opMetadata Record<string, unknown> | undefined
referenceSequenceNumber number
type "message"

Property Details

clientSequenceNumber

Signature
clientSequenceNumber: number;

Type: number

content

Signature
content: any;

Type: any

localOpMetadata

Signature
localOpMetadata: unknown;

Type: unknown

messageType

Signature
messageType: ContainerMessageType;

Type: ContainerMessageType

opMetadata

Signature
opMetadata: Record<string, unknown> | undefined;

Type: Record<string, unknown> | undefined

referenceSequenceNumber

Signature
referenceSequenceNumber: number;

Type: number

type

Signature
type: "message";

Type: "message"