Trait batch_processing::tokio::step::Decider
source · pub trait Decider {
// Required method
fn decide<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = bool> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
A trait representing a decider for asynchronous steps.