()
| 73 | } |
| 74 | |
| 75 | hostDisconnected(): void { |
| 76 | if (!this.connected) { |
| 77 | return |
| 78 | } |
| 79 | |
| 80 | this.connected = false |
| 81 | |
| 82 | if (!this.explicitClient) { |
| 83 | this.connectionAttempt += 1 |
| 84 | this.clearContextClient() |
| 85 | this.updateQueryClientResolutionState('pre-connect') |
| 86 | } |
| 87 | |
| 88 | this.onDisconnected() |
| 89 | } |
| 90 | |
| 91 | hostUpdate(): void { |
| 92 | if (this.destroyed) { |
nothing calls this directly
no test coverage detected