nodeId$

View as MarkdownOpen in Claude
1get nodeId$(): Observable<string | undefined>

Observable of the server node ID for this participant.

Inherited from

Participant.nodeId$

nodeId

1get nodeId(): string | undefined

Server node ID for this participant, or undefined if not available.

Inherited from

Participant.nodeId

Examples

1selfParticipant.nodeId$.subscribe((nodeId) => {
2 console.log('nodeId:', nodeId);
3});