Trait DynStateStoreExt
Source pub trait DynStateStoreExt: 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 = StateStorePointer<Box<dyn DynLocalStateStore>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn new_read_snapshot<'life0, 'async_trait>(
&'life0 self,
epoch: HummockReadEpoch,
options: NewReadSnapshotOptions,
) -> Pin<Box<dyn Future<Output = StorageResult<StateStorePointer<Arc<dyn DynStateStoreRead>>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}