()
| 397 | } |
| 398 | |
| 399 | export function stopHubProbes() { |
| 400 | if (hubProbeTimer) { clearInterval(hubProbeTimer); hubProbeTimer = null; } |
| 401 | Array.from(hubRetryTimers.values()).forEach(timer => clearTimeout(timer)); |
| 402 | hubRetryTimers.clear(); |
| 403 | } |
| 404 | |
| 405 | export function connectToServer(serverId) { |
| 406 | if (hubConnectingServerId) return; |
no outgoing calls
no test coverage detected