Un-backfilled growth estimate: bytes the WAL has grown past the last full backfill.
()
| 130 | |
| 131 | /** Un-backfilled growth estimate: bytes the WAL has grown past the last full backfill. */ |
| 132 | private growthBytes(): number { |
| 133 | return this.db.getWalSizeBytes() - this.sizeAtLastFullBackfill; |
| 134 | } |
| 135 | |
| 136 | /** Begin watching the WAL. Idempotent; the timer never holds the loop open. */ |
| 137 | start(): void { |
no test coverage detected