ISignalClient Interface
To use, import via @fluidframework/driver-definitions/legacy
.
For more information about our API support guarantees, see here.
Signature
export interface ISignalClient
Properties
Property | Alerts | Modifiers | Type | Description |
---|---|---|---|---|
client | Alpha |
IClient | The underlying client details. | |
clientConnectionNumber | Alpha |
optional |
number | Counts the number of signals sent by the client. |
clientId | Alpha |
string | The client's unique ID. | |
referenceSequenceNumber | Alpha |
optional |
number | Sequence number that indicates when the signal was created in relation to the delta stream. |
Property Details
client
The underlying client details.
To use, import via @fluidframework/driver-definitions/alpha
.
For more information about our API support guarantees, see here.
Signature
client: IClient;
Type: IClient
clientConnectionNumber
Counts the number of signals sent by the client.
To use, import via @fluidframework/driver-definitions/alpha
.
For more information about our API support guarantees, see here.
Signature
clientConnectionNumber?: number;
Type: number
clientId
The client's unique ID.
To use, import via @fluidframework/driver-definitions/alpha
.
For more information about our API support guarantees, see here.
Signature
clientId: string;
Type: string
referenceSequenceNumber
Sequence number that indicates when the signal was created in relation to the delta stream.
To use, import via @fluidframework/driver-definitions/alpha
.
For more information about our API support guarantees, see here.
Signature
referenceSequenceNumber?: number;
Type: number