ActorBasePostRestart Method |
User overridable callback: By default it calls `preStart()`.
Is called right AFTER restart on the newly created Actor to allow reinitialization after an Actor crash.
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxprotected virtual void PostRestart(
Exception reason
)
Protected Overridable Sub PostRestart (
reason As Exception
)
protected:
virtual void PostRestart(
Exception^ reason
)
abstract PostRestart :
reason : Exception -> unit
override PostRestart :
reason : Exception -> unit
Parameters
- reason
- Type: SystemException
the Exception that caused the restart to happen.
See Also