pub trait SignalReceiver {
// Required method
fn signal<'life0, 'async_trait>(
&'life0 mut self,
signal: Signal,
) -> Pin<Box<dyn Future<Output = Result<(), PipelineErrorKind>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}
Expand description
Providers a way for the pipeline to accept a signal from the driver.