Class QueueItem<T>
Inheritance
System.Object
QueueItem<T>
Assembly: AzureFromTheTrenches.Commanding.Queue.dll
Syntax
public class QueueItem<T> : object where T : class
Type Parameters
Constructors
|
Improve this Doc
View Source
QueueItem(T, Int32, String, IReadOnlyDictionary<String, Object>, Func<Task>)
Declaration
public QueueItem(T item, int dequeueCount, string popReceipt, IReadOnlyDictionary<string, object> properties, Func<Task> extendLeaseAsync)
Parameters
Type |
Name |
Description |
T |
item |
|
System.Int32 |
dequeueCount |
|
System.String |
popReceipt |
|
IReadOnlyDictionary<System.String, System.Object> |
properties |
|
Func<Task> |
extendLeaseAsync |
|
Properties
|
Improve this Doc
View Source
DequeueCount
Declaration
public int DequeueCount { get; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
ExtendLeaseAsync
Declaration
public Func<Task> ExtendLeaseAsync { get; }
Property Value
Type |
Description |
Func<Task> |
|
|
Improve this Doc
View Source
Item
Declaration
Property Value
|
Improve this Doc
View Source
PopReciept
Declaration
public string PopReciept { get; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Properties
Declaration
public IReadOnlyDictionary<string, object> Properties { get; }
Property Value
Type |
Description |
IReadOnlyDictionary<System.String, System.Object> |
|