risingwave_storage::store_impl::boxed_state_storeTrait 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;
}