()
| 306 | } |
| 307 | |
| 308 | private stopPing(): void { |
| 309 | if (this.pingInterval) { |
| 310 | clearInterval(this.pingInterval); |
| 311 | this.pingInterval = null; |
| 312 | } |
| 313 | } |
| 314 | |
| 315 | private scheduleReconnect(): void { |
| 316 | if (this.reconnectAttempts >= this.maxReconnectAttempts) return; |
no outgoing calls
no test coverage detected