isNetworkHealthy$

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

Simple boolean health indicator derived from stats monitor.

isNetworkHealthy

1get isNetworkHealthy(): boolean

Whether the network is currently healthy.

Examples

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