mito2::wal::entry_reader

Trait WalEntryReader

Source
pub(crate) trait WalEntryReader: Send + Sync {
    // Required method
    fn read(
        &mut self,
        ns: &Provider,
        start_id: EntryId,
    ) -> Result<WalEntryStream<'static>>;
}
Expand description

WalEntryReader provides the ability to read and decode entries from the underlying store.

Notes: It will consume the inner stream and only allow invoking the read at once.

Required Methods§

Source

fn read( &mut self, ns: &Provider, start_id: EntryId, ) -> Result<WalEntryStream<'static>>

Implementors§