ClientSessionId TypeAlias
A Fluid client session identifier.
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
export type ClientSessionId = SessionId & {
readonly ClientSessionId: "ClientSessionId";
};
Remarks
Each client once connected to a session is given a unique identifier for the duration of the session. If a client disconnects and reconnects, it will retain its identifier. Prefer use of ISessionClient as a way to identify clients in a session. sessionId will provide the session ID.