QueueFullException Class

Definition

Thrown by EnqueueAsync(ITransaction, T, CancellationToken, Nullable<TimeSpan>) when the queue capacity has been reached.

public class QueueFullException : System.Fabric.FabricTransientException
type QueueFullException = class
    inherit FabricTransientException
Public Class QueueFullException
Inherits FabricTransientException
Inheritance

Remarks

Retriable; when encountering this exception, the caller should wait some time for additional enqueue operations before issuing another dequeue.

Queue capacity is not currently implemented.

Constructors

QueueFullException()

Initializes a new Instance of the QueueFullException class.

QueueFullException(String)

Initializes a new Instance of the QueueFullException class with a specified error message.

QueueFullException(String, Exception)

Initializes a new instance of the QueueFullException 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