Show / Hide Table of Contents

Class QueueItem<T>

Inheritance
System.Object
QueueItem<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: AzureFromTheTrenches.Commanding.Queue.Model
Assembly: AzureFromTheTrenches.Commanding.Queue.dll
Syntax
public class QueueItem<T>
    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
System.Collections.Generic.IReadOnlyDictionary<System.String, System.Object> properties
System.Func<System.Threading.Tasks.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
System.Func<System.Threading.Tasks.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
System.Collections.Generic.IReadOnlyDictionary<System.String, System.Object>
  • Improve this Doc
  • View Source
Back to top Generated by DocFX