[][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

type Msg: Message

Loading content...

Required methods

fn tmp_actor_of(
    &self,
    props: BoxActorProd<Self::Msg>
) -> Result<ActorRef<Self::Msg>, CreateError>

Loading content...

Implementors

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

type Msg = Msg

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

type Msg = Msg

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

type Msg = Msg

Loading content...