pub trait RuntimeHandler {
    fn on_process_status<'a>(&self, status: ProcessStatus) -> BoxFuture<'a, ()>;
    fn on_runtime_status<'a>(&self, status: RuntimeStatus) -> BoxFuture<'a, ()>;
}
Expand description

Process and internal event handler

Required Methods§

Process event handler

Runtime event handler

Implementors§