C# Class Akka.Actor.AskTimeoutException

This exception is thrown when an Ask operation times out.
Inheritance: AkkaException
Mostra file Open project: rogeralsing/akka.net

Public Methods

Method Description
AskTimeoutException ( string message ) : System

Initializes a new instance of the AskTimeoutException class.

Protected Methods

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

Initializes a new instance of the AskTimeoutException class.

Method Details

AskTimeoutException() protected method

Initializes a new instance of the AskTimeoutException class.
protected AskTimeoutException ( 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

AskTimeoutException() public method

Initializes a new instance of the AskTimeoutException class.
public AskTimeoutException ( string message ) : System
message string The message that describes the error.
return System