Seal the WAL.
(&mut self)
| 294 | |
| 295 | /// Seal the WAL. |
| 296 | pub fn seal(&mut self) -> Result<()> { |
| 297 | self.submit_and_sync()?; |
| 298 | self.sealed = true; |
| 299 | Ok(()) |
| 300 | } |
| 301 | |
| 302 | /// Next LSN that will be assigned. |
| 303 | pub fn next_lsn(&self) -> u64 { |
nothing calls this directly
no test coverage detected