log_store::kafka::index::iterator

Trait RegionWalIndexIterator

Source
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§

Source

fn next_batch_hint(&self, avg_size: usize) -> Option<NextBatchHint>

Returns next batch hint.

Source

fn peek(&self) -> Option<EntryId>

Source

fn next(&mut self) -> Option<EntryId>

Implementors§