MCPcopy Create free account
hub / github.com/RioArisk/claudecode_api_RemoteControl / startHubProbes

Function startHubProbes

app/src/modules/hub.js:393–397  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

391}
392
393export function startHubProbes() {
394 stopHubProbes();
395 probeAllServers();
396 hubProbeTimer = setInterval(() => probeAllServers(), HUB_PROBE_INTERVAL_MS);
397}
398
399export function stopHubProbes() {
400 if (hubProbeTimer) { clearInterval(hubProbeTimer); hubProbeTimer = null; }

Callers 2

showConnectScreenFunction · 0.70
initHubFunction · 0.70

Calls 2

stopHubProbesFunction · 0.70
probeAllServersFunction · 0.70

Tested by

no test coverage detected