pub trait TransactionReplayer: Send {
    // Required methods
    fn replay_chunk(
        &self,
        first_version: Version,
        txns: Vec<Transaction>,
        txn_infos: Vec<TransactionInfo>
    ) -> Result<()>;
    fn expecting_version(&self) -> Version;
}

Required Methods§

source

fn replay_chunk( &self, first_version: Version, txns: Vec<Transaction>, txn_infos: Vec<TransactionInfo> ) -> Result<()>

source

fn expecting_version(&self) -> Version

Implementors§