()
| 134 | } |
| 135 | |
| 136 | protected onConnected(): void { |
| 137 | if (!this.syncClient()) { |
| 138 | return |
| 139 | } |
| 140 | |
| 141 | this.refreshOptions() |
| 142 | this.subscribe() |
| 143 | this.observer?.updateResult() |
| 144 | if (this.observer) { |
| 145 | this.setObserverResult(this.observer.getCurrentResult()) |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | protected onDisconnected(): void { |
| 150 | this.unsubscribeObserver() |
nothing calls this directly
no test coverage detected