MCPcopy Create free account
hub / github.com/krasimir/react-in-patterns / createUpdateQueue

Function createUpdateQueue

code/event-handlers/public/app.js:7205–7220  ·  view source on GitHub ↗
(baseState)

Source from the content-addressed store, hash-verified

7203
7204
7205function createUpdateQueue(baseState) {
7206 var queue = {
7207 baseState: baseState,
7208 expirationTime: NoWork,
7209 first: null,
7210 last: null,
7211 callbackList: null,
7212 hasForceUpdate: false,
7213 isInitialized: false,
7214 capturedValues: null
7215 };
7216 {
7217 queue.isProcessing = false;
7218 }
7219 return queue;
7220}
7221
7222function insertUpdateIntoQueue(queue, update) {
7223 // Append the update to the end of the list.

Callers 1

ensureUpdateQueuesFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected