Trait transact::scheduler::ExecutionTaskCompletionNotifier[][src]

pub trait ExecutionTaskCompletionNotifier: Send {
    fn notify(&self, notification: ExecutionTaskCompletionNotification);
fn clone_box(&self) -> Box<dyn ExecutionTaskCompletionNotifier>; }
Expand description

Allows sending a notification to the scheduler that execution of a task has completed.

Required methods

Sends a notification to the scheduler.

Implementors