Skip to main content

IRuntimeMessagesContent Interface

These are the contents of a runtime message as it is processed throughout the stack.

WARNING: This API is provided as an alpha preview and may change without notice. Use at your own risk.

Signature

/** @sealed */
export interface IRuntimeMessagesContent

Properties

Property Alerts Modifiers Type Description
clientSequenceNumber Alpha readonly number The client sequence number of the message
contents Alpha readonly unknown The contents of the message, i.e., the payload
localOpMetadata Alpha readonly unknown The local metadata associated with the original message that was submitted

Property Details

clientSequenceNumber

The client sequence number of the message

WARNING: This API is provided as an alpha preview and may change without notice. Use at your own risk.

Signature

readonly clientSequenceNumber: number;

Type: number

contents

The contents of the message, i.e., the payload

WARNING: This API is provided as an alpha preview and may change without notice. Use at your own risk.

Signature

readonly contents: unknown;

Type: unknown

localOpMetadata

The local metadata associated with the original message that was submitted

WARNING: This API is provided as an alpha preview and may change without notice. Use at your own risk.

Signature

readonly localOpMetadata: unknown;

Type: unknown