The next LSN that will be assigned.
(&self)
| 376 | |
| 377 | /// The next LSN that will be assigned. |
| 378 | pub fn next_lsn(&self) -> u64 { |
| 379 | self.next_lsn.load(Ordering::Relaxed) |
| 380 | } |
| 381 | |
| 382 | /// Current file size (bytes written to disk). |
| 383 | pub fn file_offset(&self) -> u64 { |
no test coverage detected