ready$

View as MarkdownOpen in Claude
1get ready$(): Observable<boolean>

Observable that emits true when the client is both connected and authenticated.

Examples

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