pub trait RegionWalIndexIterator:
Send
+ Sync
+ Debug {
// Required methods
fn next_batch_hint(&self, avg_size: usize) -> Option<NextBatchHint>;
fn peek(&self) -> Option<EntryId>;
fn next(&mut self) -> Option<EntryId>;
}
Expand description
An iterator over WAL (Write-Ahead Log) entries index for a region.
Required Methods§
Sourcefn next_batch_hint(&self, avg_size: usize) -> Option<NextBatchHint>
fn next_batch_hint(&self, avg_size: usize) -> Option<NextBatchHint>
Returns next batch hint.