nodeId$

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

Observable of the server node ID handling this call.

nodeId

get nodeId(): string | null

Server node ID handling this call, or null.

Examples

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