IMember Interface
Packages > fluid-framework > IMember
Base interface to be implemented to fetch each service’s member. This interface can be extended by each service to provide additional service-specific user metadata.
Signature:
export interface IMember
Properties
Property | Type | Description |
---|---|---|
connections | IConnection | The set of connections the user has made, e.g. from multiple tabs or devices. |
userId | An ID for the user, unique among each individual user connecting to the session. |
Events
connections
The set of connections the user has made, e.g. from multiple tabs or devices.
Signature:
connections: IConnection[];
userId
An ID for the user, unique among each individual user connecting to the session.
Signature:
userId: string;