transactions_from

Function transactions_from 

Source
pub fn transactions_from<'a, D, T>(
    root: CommitLogDir,
    offset: u64,
    de: &'a D,
) -> Result<impl Iterator<Item = Result<Transaction<T>, D::Error>> + 'a>
where D: Decoder<Record = T>, D::Error: From<Traversal>, T: 'a,
Expand description

Obtain an iterator which traverses the commitlog located at the root directory starting from offset and yielding Transactions.

Starts the traversal without the upfront I/O imposed by Commitlog::open. See Commitlog::transactions_from for more information.