Trait mz_txn_wal::txn_read::UnblockRead

source ·
pub(crate) trait UnblockRead<T>: Debug + Send {
    // Required method
    fn unblock_read<'async_trait>(
        self: Box<Self>,
        snapshot: DataSnapshot<T>,
    ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
       where Self: 'async_trait;
}

Required Methods§

source

fn unblock_read<'async_trait>( self: Box<Self>, snapshot: DataSnapshot<T>, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait,

Implementations on Foreign Types§

source§

impl<K, V, T, D> UnblockRead<T> for WriteHandle<K, V, T, D>

source§

fn unblock_read<'async_trait>( self: Box<Self>, snapshot: DataSnapshot<T>, ) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait,

Implementors§