Package akka.actor
Interface TypedActor.PostRestart
-
- Enclosing class:
- TypedActor
public static interface TypedActor.PostRestart
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
postRestart(java.lang.Throwable reason)
User overridable callback: By default it callspreStart()
.
-
-
-
Method Detail
-
postRestart
void postRestart(java.lang.Throwable reason)
User overridable callback: By default it callspreStart()
.- Parameters:
reason
- 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.
-
-