Interface IQueueableCommand
Represents a command that can be queued.
Namespace: AzureFromTheTrenches.Commanding.Abstractions
Assembly: AzureFromTheTrenches.Commanding.Abstractions.dll
Syntax
public interface IQueueableCommand
Properties
| Improve this Doc View SourceDequeueCount
The number of times the command has been pulled from the queue
Declaration
int DequeueCount { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
ShouldDequeue
Whether or not the command should be deqeued or returned to the queue
Declaration
bool ShouldDequeue { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |