pub trait Notifier:
Send
+ Sync
+ 'static {
// Required method
fn notify<'life0, 'async_trait>(
&'life0 self,
result: RemoteJobResult,
waiters: Vec<OutputTx>,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Notifier is used to notify the mito engine when a remote job is completed.