risingwave_storage::store_impl::boxed_state_store

Trait DynamicDispatchedStateStoreExt

source
pub trait DynamicDispatchedStateStoreExt: StaticSendSync {
    // Required methods
    fn try_wait_epoch<'life0, 'async_trait>(
        &'life0 self,
        epoch: HummockReadEpoch,
        options: TryWaitEpochOptions,
    ) -> Pin<Box<dyn Future<Output = StorageResult<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn new_local<'life0, 'async_trait>(
        &'life0 self,
        option: NewLocalOptions,
    ) -> Pin<Box<dyn Future<Output = BoxDynamicDispatchedLocalStateStore> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn try_wait_epoch<'life0, 'async_trait>( &'life0 self, epoch: HummockReadEpoch, options: TryWaitEpochOptions, ) -> Pin<Box<dyn Future<Output = StorageResult<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn new_local<'life0, 'async_trait>( &'life0 self, option: NewLocalOptions, ) -> Pin<Box<dyn Future<Output = BoxDynamicDispatchedLocalStateStore> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§