Trait FindExistingBatchFileIndices

Source
pub trait FindExistingBatchFileIndices: Send + Sync {
    type Error;

    // Required method
    fn find_existing_batch_file_indices<'async_trait>(
        self: Arc<Self>,
    ) -> Pin<Box<dyn Future<Output = Result<HashSet<BatchIndex>, Self::Error>> + Send + 'async_trait>>
       where Self: 'async_trait;
}

Required Associated Types§

Required Methods§

Source

fn find_existing_batch_file_indices<'async_trait>( self: Arc<Self>, ) -> Pin<Box<dyn Future<Output = Result<HashSet<BatchIndex>, Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait,

Implementors§