Force all buffered content to disk. Call when backgrounding.
()
| 360 | |
| 361 | /** Force all buffered content to disk. Call when backgrounding. */ |
| 362 | spillToDisk(): void { |
| 363 | if (!this.#disk) { |
| 364 | this.#spillToDisk(null, null) |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | async flush(): Promise<void> { |
| 369 | await this.#disk?.flush() |
no test coverage detected