nodeId$

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

Observable of the server node ID handling this call.

nodeId

1get nodeId(): string | null

Server node ID handling this call, or null.

Examples

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