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

Function createPollingIntervalQueue

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

Source from the content-addressed store, hash-verified

6275 };
6276 }
6277 function createPollingIntervalQueue(pollingInterval) {
6278 var queue = [];
6279 queue.pollingInterval = pollingInterval;
6280 queue.pollIndex = 0;
6281 queue.pollScheduled = false;
6282 return queue;
6283 }
6284 function pollPollingIntervalQueue(queue) {
6285 queue.pollIndex = pollQueue(queue, queue.pollingInterval, queue.pollIndex, pollingChunkSize[queue.pollingInterval]);
6286 // Set the next polling index and timeout

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…