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

fn notify(&self, notification: ExecutionTaskCompletionNotification)[src]

Sends a notification to the scheduler.

fn clone_box(&self) -> Box<dyn ExecutionTaskCompletionNotifier>[src]

Implementors