Class |
Description |
AbstractLoopingActor
|
Wraps all actors that repeatedly loop through incoming messages and hold no implicit state between subsequent messages. |
Actor
|
Actors are active objects, which borrow a thread from a thread pool.
|
ActorMessage
|
An internal representation of received messages holding both the original message plus the sender actor reference.
|
ActorTimerTask
|
Represents an ongoing timeout |
Actors
|
Provides handy helper methods to create pooled actors and customize the underlying thread pool.
|
BlockingActor
|
@author Vaclav Pech, Alex Tkachman, Dierk Koenig |
DDAHelper
|
Hooks the supplied when handlers to DDAs |
DefaultActor
|
The DefaultActor class is the base for all stateful actors, who need to maintain implicit state between subsequent message arrivals.
|
DefaultActorClosure
|
Represents the DDA closure to invoke appropriate message handlers based on message runtime type |
DynamicDispatchActor
|
A pooled actor allowing for an alternative structure of the message handling code.
|
ForwardingDelegate
|
@author Alex Tkachman, Vaclav Pech |
ReactiveActor
|
An actor representing a reactor. |
StaticDispatchActor
|
Offers a statically dispatched and thus slightly faster alternative to the DynamicDispatchActor class.
|