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

Function flushInteractiveUpdates

code/redux/public/app.js:14230–14236  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

14228 }
14229
14230 function flushInteractiveUpdates() {
14231 if (!isRendering && lowestPendingInteractiveExpirationTime !== NoWork) {
14232 // Synchronously flush pending interactive updates.
14233 performWork(lowestPendingInteractiveExpirationTime, false, null);
14234 lowestPendingInteractiveExpirationTime = NoWork;
14235 }
14236 }
14237
14238 function flushControlled(fn) {
14239 var previousIsBatchingUpdates = isBatchingUpdates;

Callers

nothing calls this directly

Calls 1

performWorkFunction · 0.70

Tested by

no test coverage detected