C# Class Akka.Actor.DeathPactException

This exception is thrown by an Actor that receives a Terminated(someActor) message that it doesn't handle itself, effectively crashing the Actor and escalating to the supervisor.
Inheritance: AkkaException
Afficher le fichier Open project: rogeralsing/akka.net

Méthodes publiques

Méthode Description
DeathPactException ( IActorRef deadActor ) : System

Initializes a new instance of the DeathPactException class.

Méthodes protégées

Méthode Description
DeathPactException ( SerializationInfo info, StreamingContext context ) : System

Initializes a new instance of the DeathPactException class.

Method Details

DeathPactException() public méthode

Initializes a new instance of the DeathPactException class.
public DeathPactException ( IActorRef deadActor ) : System
deadActor IActorRef The actor that has been terminated.
Résultat System

DeathPactException() protected méthode

Initializes a new instance of the DeathPactException class.
protected DeathPactException ( 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.
Résultat System