Trait actix::prelude::ContextFutureSpawner[][src]

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

Helper trait which can spawn a future into the actor’s context.

Required methods

fn spawn(self, ctx: &mut A::Context)[src]

Spawns the future into the given context.

fn wait(self, ctx: &mut A::Context)[src]

Spawns the future into the given context, waiting for it to resolve.

This stops processing any incoming events until this future resolves.

Loading content...

Implementors

impl<A, T> ContextFutureSpawner<A> for T where
    A: Actor,
    A::Context: AsyncContext<A>,
    T: ActorFuture<A, Output = ()> + 'static, 
[src]

Loading content...