public static class TypedActor.TypedActor<R,T extends R> extends java.lang.Object implements Actor
Implementation of TypedActor as an Actor
Actor.emptyBehavior$| Constructor and Description |
|---|
TypedActor(java.util.concurrent.atomic.AtomicReference<R> proxyVar,
scala.Function0<T> createInstance,
scala.collection.immutable.Seq<java.lang.Class<?>> interfaces) |
| Modifier and Type | Method and Description |
|---|---|
void |
postRestart(java.lang.Throwable reason)
User overridable callback: By default it calls
preStart(). |
void |
postStop()
User overridable callback.
|
void |
preRestart(java.lang.Throwable reason,
scala.Option<java.lang.Object> message)
User overridable callback: '''By default it disposes of all children and then calls
postStop().''' |
void |
preStart()
User overridable callback.
|
java.util.concurrent.atomic.AtomicReference<R> |
proxyVar() |
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.
|
SupervisorStrategy |
supervisorStrategy()
User overridable definition the strategy to use for supervising
child actors.
|
protected <T> T |
withContext(scala.Function0<T> unitOfWork) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitaroundPostRestart, aroundPostStop, aroundPreRestart, aroundPreStart, aroundReceive, context, self, sender, unhandledpublic java.util.concurrent.atomic.AtomicReference<R> proxyVar()
public SupervisorStrategy supervisorStrategy()
ActorsupervisorStrategy in interface Actorpublic void preStart()
Actorpublic void postStop()
Actorpublic void preRestart(java.lang.Throwable reason,
scala.Option<java.lang.Object> message)
ActorpostStop().'''preRestart in interface Actorreason - the Throwable that caused the restart to happenmessage - 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.public void postRestart(java.lang.Throwable reason)
ActorpreStart().postRestart in interface Actorreason - the Throwable that caused the restart to happen
Is called right AFTER restart on the newly created Actor to allow reinitialization after an Actor crash.protected <T> T withContext(scala.Function0<T> unitOfWork)