pub trait Interruptor: Send + 'static {
// Required method
fn stop(&self, force: bool) -> Result<(), Error>;
}
Expand description
The interruptor used internally by a supervisor context or by a standalone routine.
pub trait Interruptor: Send + 'static {
// Required method
fn stop(&self, force: bool) -> Result<(), Error>;
}
The interruptor used internally by a supervisor context or by a standalone routine.