Skip to main content

IRuntimeMessageCollection Interface

A collection of messages that are processed by the runtime.

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

Signature

/** @sealed */
export interface IRuntimeMessageCollection

Properties

Property Alerts Modifiers Type Description
envelope Alpha readonly ISequencedMessageEnvelope The envelope for all the messages in the collection
local Alpha readonly boolean Whether these messages were originally generated by the client processing it
messagesContent Alpha readonly readonly IRuntimeMessagesContent[] The contents of the messages in the collection

Property Details

envelope

The envelope for all the messages in the collection

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

Signature

readonly envelope: ISequencedMessageEnvelope;

Type: ISequencedMessageEnvelope

local

Whether these messages were originally generated by the client processing it

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

Signature

readonly local: boolean;

Type: boolean

messagesContent

The contents of the messages in the collection

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

Signature

readonly messagesContent: readonly IRuntimeMessagesContent[];

Type: readonly IRuntimeMessagesContent[]