Packages > @fluidframework/fluid-static > IMember

IMember Interface

Base interface to be implemented to fetch each service’s member.

Signature

export interface IMember

Remarks

This interface can be extended by each service to provide additional service-specific user metadata.

Properties

Property Modifiers Type Description
connections readonly IConnection[] The set of connections the user has made, e.g. from multiple tabs or devices.
userId readonly string An ID for the user, unique among each individual user connecting to the session.

Property Details

connections

The set of connections the user has made, e.g. from multiple tabs or devices.

Signature

readonly connections: IConnection[];

userId

An ID for the user, unique among each individual user connecting to the session.

Signature

readonly userId: string;