* Shuts down every registered cache backend and waits for cleanup to finish. * @param {CallbackCache<void>} callback signals when the call finishes * @returns {void}
(callback)
| 176 | * @returns {void} |
| 177 | */ |
| 178 | shutdown(callback) { |
| 179 | this.hooks.shutdown.callAsync( |
| 180 | makeWebpackErrorCallback(callback, "Cache.hooks.shutdown") |
| 181 | ); |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | Cache.STAGE_MEMORY = -10; |
no test coverage detected