Enum robots::actors::actor_cell::ControlMessage [] [src]

pub enum ControlMessage {
    PoisonPill,
    Failure(Failure),
    KillMe(ActorRef),
    RegisterMonitoring,
}

Control Messages.

Variants

Requests the termination of the actor. This is what is sent when the context.stop(actor_ref) is called.

Tells an actor another failed.

Message sent to the father of an actor to request being terminated.

Message sent to be notified of failures.

Trait Implementations

impl Clone for ControlMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more