Determine the maximum transaction offset considered durable. The offset is `None` if the log hasn't been flushed to disk yet.
(&self)
| 217 | /// |
| 218 | /// The offset is `None` if the log hasn't been flushed to disk yet. |
| 219 | pub fn max_committed_offset(&self) -> Option<u64> { |
| 220 | self.inner.read().unwrap().max_committed_offset() |
| 221 | } |
| 222 | |
| 223 | /// Determine the minimum transaction offset in the log. |
| 224 | /// |