Show / Hide Table of Contents

Class QueueItem<T>

Inheritance
System.Object
QueueItem<T>
Namespace: AzureFromTheTrenches.Commanding.Queue.Model
Assembly: AzureFromTheTrenches.Commanding.Queue.dll
Syntax
public class QueueItem<T> : object where T : class
Type Parameters
Name Description
T

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
public T Item { get; }
Property Value
Type Description
T
| 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>
  • Improve this Doc
  • View Source
  • 0 Comments
Back to top Copyright © 2018 James Randall