* Signals that webpack is leaving the idle phase and waits for cache * backends to finish any asynchronous resume work. * @param {CallbackCache<void>} callback signals when the call finishes * @returns {void}
(callback)
| 165 | * @returns {void} |
| 166 | */ |
| 167 | endIdle(callback) { |
| 168 | this.hooks.endIdle.callAsync( |
| 169 | makeWebpackErrorCallback(callback, "Cache.hooks.endIdle") |
| 170 | ); |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Shuts down every registered cache backend and waits for cleanup to finish. |
no test coverage detected