MCPcopy Create free account
hub / github.com/RtlZeroMemory/Rezi / clearPollLoop

Function clearPollLoop

packages/node/src/backend/nodeBackendInline.ts:358–368  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

356 }
357
358 function clearPollLoop(): void {
359 if (pollTimer !== null) {
360 clearTimeout(pollTimer);
361 pollTimer = null;
362 }
363 if (pollImmediate !== null) {
364 clearImmediate(pollImmediate);
365 pollImmediate = null;
366 }
367 pollActive = false;
368 }
369
370 function schedulePoll(delayMs: number): void {
371 if (!started || disposed || stopRequested || fatal !== null) return;

Callers 2

stopFunction · 0.85
disposeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected