C# Class Akka.Actor.PostRestartException

This exception is thrown when the Actor constructor or ActorBase.PostRestart method fails during a restart attempt.
Inheritance: ActorInitializationException
Mostra file Open project: rogeralsing/akka.net

Public Methods

Method Description
PostRestartException ( IActorRef actor, Exception cause, Exception originalCause ) : System

Initializes a new instance of the PostRestartException class.

Protected Methods

Method Description
PostRestartException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the PostRestartException class.

Method Details

PostRestartException() public method

Initializes a new instance of the PostRestartException class.
public PostRestartException ( IActorRef actor, Exception cause, Exception originalCause ) : System
actor IActorRef The actor whose constructor or hook failed.
cause System.Exception The exception thrown by the within .
originalCause System.Exception The original cause is the exception which caused the restart in the first place.
return System

PostRestartException() protected method

Initializes a new instance of the PostRestartException class.
protected PostRestartException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo The that holds the serialized object data about the exception being thrown.
context System.Runtime.Serialization.StreamingContext The that contains contextual information about the source or destination.
return System