pub trait ContextFutureSpawner<A>where
    A: Actor,
    <A as Actor>::Context: AsyncContext<A>,
{ fn spawn(self, ctx: &mut <A as Actor>::Context); fn wait(self, ctx: &mut <A as Actor>::Context); }
Expand description

Helper trait which can spawn future into actor’s context

Required Methods

spawn future into Context<A>

Spawn future into the context. Stop processing any of incoming events until this future resolves.

Implementors