MCPcopy Index your code
hub / github.com/ChartGPU/ChartGPU / cancelScheduledFlush

Function cancelScheduledFlush

src/core/createRenderCoordinator.ts:2050–2060  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2048 };
2049
2050 const cancelScheduledFlush = (): void => {
2051 if (flushRafId !== null) {
2052 cancelAnimationFrame(flushRafId);
2053 flushRafId = null;
2054 }
2055 if (flushTimeoutId !== null) {
2056 clearTimeout(flushTimeoutId);
2057 flushTimeoutId = null;
2058 }
2059 flushScheduled = false;
2060 };
2061
2062 const cancelZoomResampleDebounce = (): void => {
2063 if (zoomResampleDebounceTimer !== null) {

Callers 4

scheduleFlushFunction · 0.85
setOptionsFunction · 0.85
renderFunction · 0.85
disposeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected