InvalidReentrantCallException Class

Definition

This exception is thrown by actor runtime when more than one reentrant call chain is active for an actor at the same time.

This can happen in scenario where actor A calls actor B, C and D in parallel and then B, C and D try to call back A at the same time.

[System.Serializable]
public sealed class InvalidReentrantCallException : System.Fabric.FabricException
[<System.Serializable>]
type InvalidReentrantCallException = class
    inherit FabricException
Public NotInheritable Class InvalidReentrantCallException
Inherits FabricException
Inheritance
InvalidReentrantCallException
Attributes

Constructors

InvalidReentrantCallException()

Initializes a new instance of the InvalidReentrantCallException class.

InvalidReentrantCallException(String)

Initializes a new instance of the InvalidReentrantCallException class with a specified error message.

InvalidReentrantCallException(String, Exception)

Initializes a new instance of the InvalidReentrantCallException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Properties

ErrorCode

Gets the error code parameter.

(Inherited from FabricException)

Applies to