Enum robots::actors::actor_cell::ControlMessage
[−]
[src]
pub enum ControlMessage {
PoisonPill,
Failure(Failure),
KillMe(ActorRef),
RegisterMonitoring,
}Control Messages.
Variants
PoisonPillRequests the termination of the actor.
This is what is sent when the context.stop(actor_ref) is called.
Failure(Failure)Tells an actor another failed.
KillMe(ActorRef)Message sent to the father of an actor to request being terminated.
RegisterMonitoringMessage sent to be notified of failures.
Trait Implementations
impl Clone for ControlMessage[src]
fn clone(&self) -> ControlMessage[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more