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
Mostra file Open project: rogeralsing/akka.net

Public Methods

Method Description
DeathPactException ( IActorRef deadActor ) : System

Initializes a new instance of the DeathPactException class.

Protected Methods

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

Initializes a new instance of the DeathPactException class.

Method Details

DeathPactException() public method

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

DeathPactException() protected method

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.
return System