Skip to main content

ISignalMessage Interface

Interface for signals sent by the server to clients.

This API is provided for existing users, but is not recommended for new users.

To use, import via @fluidframework/driver-definitions/legacy.

For more information about our API support guarantees, see here.

Signature

export interface ISignalMessage<TMessage extends TypedMessage = TypedMessage> extends ISignalMessageBase<TMessage>

Extends: ISignalMessageBase<TMessage>

Type Parameters

ParameterConstraintDefaultDescription
TMessageTypedMessageTypedMessage

Properties

PropertyAlertsTypeDescription
clientIdBetastring | nullThe client ID that submitted the message. For server generated messages the clientId will be null.

Property Details

clientId

The client ID that submitted the message. For server generated messages the clientId will be null.

This API is provided for existing users, but is not recommended for new users.

For more information about our API support guarantees, see here.

Signature

clientId: string | null;

Type: string | null