Packages > @fluidframework/fluid-static > IMember

IMember Interface

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

WARNING: This API is provided as an alpha preview and may change without notice. Use at your own risk.

Signature

export interface IMember

Remarks

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

Properties

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

Property Details

connections (ALPHA)

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

WARNING: This API is provided as an alpha preview and may change without notice. Use at your own risk.

Signature

connections: IConnection[];

userId (ALPHA)

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

WARNING: This API is provided as an alpha preview and may change without notice. Use at your own risk.

Signature

userId: string;