| Actor<Message,V> |
An actor is a self-contained execution unit - an object running in its own strand and communicating with other actors via messages.
|
| ActorImpl<Message> |
|
| ActorImpl.ActorLifecycleListener |
|
| ActorInfo |
|
| ActorLoader |
Loads actor, and actor-related classes for hot code-swapping.
|
| ActorRef<Message> |
An actor's external API (for use by code not part of the actor).
|
| ActorRefDelegate<Message> |
An ActorRef which delegates all operations to another ActorRef.
|
| ActorRegistry |
A registry used to find registered actors by name.
|
| ActorSpec<T extends Actor<Message,V>,Message,V> |
A specification of how to construct an actor
|
| ActorUtil |
Static utility methods for working with actors.
|
| BasicActor<Message,V> |
A subclass of Actor that provides selective receive capabilities.
|
| ExitMessage |
|
| FakeActor<Message> |
|
| LocalActor |
Static methods that provide access to Actor's functionality through an ActorRef if the actor is local.
|
| Mailbox<Message> |
A channel that is used as an actor's mailbox.
|
| MailboxConfig |
An actor mailbox configuration.
|
| RemoteActor<Message> |
This class should be extended by implementations of remote actors.
|
| RemoteActor.RemoteActorAdminMessage |
|
| SelectiveReceiveHelper<Message> |
Performs selective receive on behalf of an actor.
|
| ShutdownMessage |
A message requesting the receiving actor to shut itself down.
|