pub trait FinishProcessingUncompletedBatches {
type Error;
// Required method
fn finish_processing_uncompleted_batches<'life0, 'life1, 'async_trait>(
&'life0 self,
expected_content_type: &'life1 ExpectedContentType,
) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}
Required Associated Types§
Required Methods§
Sourcefn finish_processing_uncompleted_batches<'life0, 'life1, 'async_trait>(
&'life0 self,
expected_content_type: &'life1 ExpectedContentType,
) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn finish_processing_uncompleted_batches<'life0, 'life1, 'async_trait>(
&'life0 self,
expected_content_type: &'life1 ExpectedContentType,
) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Possibly complete or discard partial data from prior runs.