MCPcopy Index your code
hub / github.com/apache/pouchdb / getQueue

Function getQueue

lib/index.js:8593–8600  ·  view source on GitHub ↗
(view)

Source from the content-addressed store, hash-verified

8591 }
8592
8593 function getQueue(view) {
8594 const viewName = typeof view === 'string' ? view : view.name;
8595 let queue = persistentQueues[viewName];
8596 if (!queue) {
8597 queue = persistentQueues[viewName] = new TaskQueue$1();
8598 }
8599 return queue;
8600 }
8601
8602 async function updateView(view, opts) {
8603 return sequentialize(getQueue(view), function () {

Callers 3

updateViewFunction · 0.70
queryViewFunction · 0.70
localViewCleanupFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…