LatestMapValueClientData Interface
Collection of latest known values for a specific client.
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/presence/alpha
.
For more information about our API support guarantees, see here.
Signature
/** @sealed */
export interface LatestMapValueClientData<T, Keys extends string | number, SpecificSessionClientId extends ClientSessionId = ClientSessionId>
Type Parameters
Parameter | Constraint | Default | Description |
---|---|---|---|
T | |||
Keys | string | number | ||
SpecificSessionClientId | ClientSessionId | ClientSessionId |
Properties
Property | Alerts | Type | Description |
---|---|---|---|
client | Alpha |
ISessionClient<SpecificSessionClientId> | Associated client. |
items | Alpha |
ReadonlyMap<Keys, LatestValueData<T>> |
Property Details
client
Associated client.
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/presence/alpha
.
For more information about our API support guarantees, see here.
Signature
client: ISessionClient<SpecificSessionClientId>;
Type: ISessionClient<SpecificSessionClientId>
items
This API is provided as an alpha preview and may change without notice.
To use, import via @fluidframework/presence/alpha
.
For more information about our API support guarantees, see here.
Signature
items: ReadonlyMap<Keys, LatestValueData<T>>;
Type: ReadonlyMap<Keys, LatestValueData<T>>