Module theater::actor [] [src]

Actors form the core of the actor model. This module provides the definitions used throughout the project for describing and managing actors.

Structs

LocalActorRef

A reference to an actor running on the current host. Messages to these instances can be sent relatively quickly, and are less likely to be lost.

RemoteActorRef

A reference to an actor running on a remote host. Messages to these instances are much slower and more error prone to deliver.

Enums

ActorRef

A reference to an actor instance. Contains information about the location of the actor.

Traits

Actor

Actor behavior is defined by an actor definition, which is any type implementing the Actor trait.