[][src]Trait disrustor::EventProcessorExecutor

pub trait EventProcessorExecutor<'a> {
    type Handle: ExecutorHandle;
    fn with_runnables(items: Vec<Box<dyn Runnable + 'a>>) -> Self;
fn spawn(self) -> Self::Handle; }

Associated Types

Loading content...

Required methods

fn with_runnables(items: Vec<Box<dyn Runnable + 'a>>) -> Self

fn spawn(self) -> Self::Handle

Loading content...

Implementors

impl<'a> EventProcessorExecutor<'a> for ThreadedExecutor<'a>[src]

type Handle = ThreadedExecutorHandle

Loading content...