risingwave_storage::store

Trait StateStoreIter

source
pub trait StateStoreIter<T: IterItem = StateStoreKeyedRow>: Send {
    // Required method
    fn try_next(&mut self) -> impl StorageFuture<'_, Option<T::ItemRef<'_>>>;
}

Required Methods§

source

fn try_next(&mut self) -> impl StorageFuture<'_, Option<T::ItemRef<'_>>>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a, T: IterItem> StateStoreIter<T> for Box<dyn DynStateStoreIter<T> + 'a>

source§

fn try_next( &mut self, ) -> impl Future<Output = StorageResult<Option<T::ItemRef<'_>>>> + Send + '_

Implementors§