Browser SDK
Build voice, video and chat applications for the browser
v4
Stable
isConnected$
1get isConnected$(): Observable<boolean>
Observable that emits when the connection state changes.
1get isConnected(): boolean
Whether the client is currently connected.
1client.isConnected$.subscribe((isConnected) => {2 console.log('isConnected:', isConnected);3});