[][src]Trait riker::ExecutionContext

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

Required methods

fn execute<F>(&self, f: F) -> RemoteHandle<F::Output> where
    F: Future + Send + 'static,
    <F as Future>::Output: Send

Loading content...

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]

Loading content...