MCPcopy Index your code
hub / github.com/nodejs/node / pollingIntervalQueue

Function pollingIntervalQueue

test/fixtures/snapshot/typescript.js:6333–6342  ·  view source on GitHub ↗
(pollingInterval)

Source from the content-addressed store, hash-verified

6331 }
6332 }
6333 function pollingIntervalQueue(pollingInterval) {
6334 switch (pollingInterval) {
6335 case PollingInterval.Low:
6336 return lowPollingIntervalQueue;
6337 case PollingInterval.Medium:
6338 return mediumPollingIntervalQueue;
6339 case PollingInterval.High:
6340 return highPollingIntervalQueue;
6341 }
6342 }
6343 function addToPollingIntervalQueue(file, pollingInterval) {
6344 pollingIntervalQueue(pollingInterval).push(file);
6345 scheduleNextPollIfNotAlreadyScheduled(pollingInterval);

Callers 3

scheduleNextPollFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected