Abstract cache interface backed by tapable hooks for reading, writing, idle transitions, and shutdown across webpack cache implementations.
new Cache(): CacheClass<CacheClass>Initializes the cache lifecycle hooks implemented by cache backends.
beginIdle(): void<void>Signals that webpack is entering an idle phase and cache backends may flush or compact pending work.
endIdle(callback): void<CallbackCacheCache><void>
> signals when the call finishes<void>Signals that webpack is leaving the idle phase and waits for cache backends to finish any asynchronous resume work.
get
get(identifier, etag, callback): void<string><CallbackCacheCache><T>
> signals when the value is retrieved<void>Retrieves a cached value and lets registered gotHandlers observe the
result before the caller receives it.
shutdown(callback): void<CallbackCacheCache><void>
> signals when the call finishes<void>Shuts down every registered cache backend and waits for cleanup to finish.
store(identifier, etag, data, callback): voidStores a cache entry for the identifier and etag through the registered cache backend hooks.
storeBuildDependencies(dependencies, callback): void<Iterable><string>
> list of all build dependencies<CallbackCacheCache><void>
> signals when the dependencies are stored<void>Persists the set of build dependencies required to determine whether the cache can be restored in a future compilation.
Creates a callback wrapper that waits for a fixed number of completions and forwards the first error immediately.
Creates a callback wrapper that waits for a fixed number of completions and forwards the first error immediately.
Creates a callback wrapper that waits for a fixed number of completions and forwards the first error immediately.
result{T}callback<Function>- Returns:
<void>
Creates a callback wrapper that waits for a fixed number of completions and forwards the first error immediately.