mito2::schedule::remote_job_scheduler

Trait Notifier

Source
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.

Required Methods§

Source

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,

Notify the mito engine that a remote job is completed.

Implementors§