Flushes buffered performance data to sink.
()
| 311 | |
| 312 | /** Flushes buffered performance data to sink. */ |
| 313 | flush(): void { |
| 314 | if (this.#state === 'closed') { |
| 315 | return; // No-op if closed |
| 316 | } |
| 317 | this.#performanceObserverSink.flush(); |
| 318 | } |
| 319 | |
| 320 | /** @returns The file path of the WriteAheadLogFile sink */ |
| 321 | get filePath(): string { |
no outgoing calls