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