public class RouterActor extends java.lang.Object implements Actor
Actor.emptyBehavior$, Actor.ignoringBehavior$
Constructor and Description |
---|
RouterActor() |
Modifier and Type | Method and Description |
---|---|
RoutedActorCell |
cell() |
ActorContext |
context()
Stores the context for this actor, including self, and sender.
|
void |
preRestart(java.lang.Throwable cause,
scala.Option<java.lang.Object> msg)
User overridable callback: '''By default it disposes of all children and then calls
postStop() .''' |
scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> |
receive()
This defines the initial actor behavior, it must return a partial function
with the actor logic.
|
scala.Option<ActorRef> |
routingLogicController() |
ActorRef |
self()
The 'self' field holds the ActorRef for this actor.
|
void |
stopIfAllRouteesRemoved() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
aroundPostRestart, aroundPostStop, aroundPreRestart, aroundPreStart, aroundReceive, postRestart, postStop, preStart, sender, supervisorStrategy, unhandled
public ActorContext context()
Actor
forward
.
WARNING: Only valid within the Actor itself, so do not close over it and publish it to other threads!
ActorContext
is the Scala API. getContext
returns a
UntypedActorContext
, which is the Java API of the actor
context.
public final ActorRef self()
Actor
self ! message
public RoutedActorCell cell()
public scala.Option<ActorRef> routingLogicController()
public scala.PartialFunction<java.lang.Object,scala.runtime.BoxedUnit> receive()
Actor
public void stopIfAllRouteesRemoved()
public void preRestart(java.lang.Throwable cause, scala.Option<java.lang.Object> msg)
Actor
postStop()
.'''preRestart
in interface Actor
cause
- the Throwable that caused the restart to happenmsg
- optionally the current message the actor processed when failing, if applicable
Is called on a crashed Actor right BEFORE it is restarted to allow clean
up of resources before Actor is terminated.