PostRestartException Constructor |
Namespace: Akka.ActorAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic PostRestartException(
ActorRef actor,
Exception cause,
Exception originalCause
)
Public Sub New (
actor As ActorRef,
cause As Exception,
originalCause As Exception
)
public:
PostRestartException(
ActorRef^ actor,
Exception^ cause,
Exception^ originalCause
)
new :
actor : ActorRef *
cause : Exception *
originalCause : Exception -> PostRestartException
Parameters
- actor
- Type: Akka.ActorActorRef
The actor whose constructor or postRestart() hook failed. - cause
- Type: SystemException
Cause is the exception thrown by that actor within preRestart(). - originalCause
- Type: SystemException
The original causeis the exception which caused the restart in the first place.
See Also