[][src]Trait riker::actor::TmpActorRefFactory

pub trait TmpActorRefFactory {
    type Msg: Message;
    fn tmp_actor_of(
        &self,
        props: BoxActorProd<Self::Msg>
    ) -> Result<ActorRef<Self::Msg>, CreateError>; }

Produces ActorRefs under the temp guardian actor.

Associated Types

Required Methods

Implementors

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

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

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