Class ActorInterruptedException
This exception is thrown when an actor is interrupted in the midst of processing messages.
This is an exception typically thrown when the underlying dispatcher's threads are aborted.
Implements
Inherited Members
Namespace: Akka.Actor
Assembly: Akka.dll
Syntax
public class ActorInterruptedException : AkkaException, ISerializable
Constructors
| Improve this Doc View SourceActorInterruptedException(SerializationInfo, StreamingContext)
Initializes a new instance of the ActorInterruptedException class.
Declaration
protected ActorInterruptedException(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | info | The SerializationInfo that holds the serialized object data about the exception being thrown. |
StreamingContext | context | The StreamingContext that contains contextual information about the source or destination. |
ActorInterruptedException(String, Exception)
TBD
Declaration
public ActorInterruptedException(string message = null, Exception cause = null)
Parameters
Type | Name | Description |
---|---|---|
String | message | TBD |
Exception | cause | TBD |