[][src]Trait riker::ExecutionContext

pub trait ExecutionContext {
    fn execute<F>(&self, f: F) -> DispatchHandle<F::Item, F::Error>
    where
        F: Future + Send + 'static,
        F::Item: Send + 'static,
        F::Error: Send + 'static
; }

Required Methods

Implementors

impl<Msg> ExecutionContext for ActorCell<Msg> where
    Msg: Message
[src]

impl<Msg> ExecutionContext for Context<Msg> where
    Msg: Message
[src]

impl<Msg> ExecutionContext for ActorSystem<Msg> where
    Msg: Message
[src]