mito2::wal::raw_entry_reader

Trait RawEntryReader

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

RawEntryReader provides the ability to read Entry from the underlying LogStore.

Required Methods§

Source

fn read( &self, provider: &Provider, start_id: EntryId, ) -> Result<BoxStream<'static, Result<Entry>>>

Implementors§