ActorConcurrencyLockTimeoutException Class

  • java.lang.Object
    • RuntimeException
      • FabricException
        • microsoft.servicefabric.actors.ActorConcurrencyLockTimeoutException

public class ActorConcurrencyLockTimeoutException extends FabricException

Exception thrown by actor runtime when runtime cannot acquire the turn based concurrency lock to dispatch the method.

Constructor Summary

Constructor Description
ActorConcurrencyLockTimeoutException()

Initializes a new instance of the ActorConcurrencyLockTimeoutException class.

ActorConcurrencyLockTimeoutException(String message)

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

ActorConcurrencyLockTimeoutException(String message, Throwable cause)

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

ActorConcurrencyLockTimeoutException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)

Initializes a new instance of the ActorConcurrencyLockTimeoutException class with a specified error message and a reference to the inner exception that is the cause of this exception, and parameters such as whether exception can be suppressed and whether stack trace is writable.

ActorConcurrencyLockTimeoutException(Throwable cause)

Inherited Members

Constructor Details

ActorConcurrencyLockTimeoutException

public ActorConcurrencyLockTimeoutException()

Initializes a new instance of the ActorConcurrencyLockTimeoutException class.

ActorConcurrencyLockTimeoutException

public ActorConcurrencyLockTimeoutException(String message)

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

Parameters:

message - input message

ActorConcurrencyLockTimeoutException

public ActorConcurrencyLockTimeoutException(String message, Throwable cause)

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

Parameters:

message - The error message that explains the reason for the exception.
cause - The exception that is the cause of the current exception, or a null reference if no inner exception is specified.

ActorConcurrencyLockTimeoutException

protected ActorConcurrencyLockTimeoutException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)

Initializes a new instance of the ActorConcurrencyLockTimeoutException class with a specified error message and a reference to the inner exception that is the cause of this exception, and parameters such as whether exception can be suppressed and whether stack trace is writable.

Parameters:

message - input message.
cause - The exception that is the cause of the current exception, or a null reference if no inner exception is specified.
enableSuppression - If true, enable suppression.
writableStackTrace - If true, enable stack trace.

ActorConcurrencyLockTimeoutException

public ActorConcurrencyLockTimeoutException(Throwable cause)

Parameters:

cause

Applies to