QueryRemoteCommitLog

Trait QueryRemoteCommitLog 

Source
pub trait QueryRemoteCommitLog {
    // Required methods
    fn get_latest_remote_log_for_group(
        &self,
        group_id: &[u8],
    ) -> Result<Option<RemoteCommitLog>, ConnectionError>;
    fn get_remote_commit_log_after_cursor(
        &self,
        group_id: &[u8],
        after_cursor: i64,
        order_by: RemoteCommitLogOrder,
    ) -> Result<Vec<RemoteCommitLog>, ConnectionError>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<T> QueryRemoteCommitLog for &T

Implementors§