Class DelayedItem<TItem>
Internal type used by IDelayedAsyncQueue<TItem> to represent the condition to when an item is to be processed.
Inherited Members
Namespace: SuperOffice.Threading
Assembly: SoCore.dll
Syntax
public class DelayedItem<TItem>
Type Parameters
| Name | Description |
|---|---|
| TItem |
Constructors
DelayedItem()
Internal type used by IDelayedAsyncQueue<TItem> to represent the condition to when an item is to be processed.
Declaration
public DelayedItem()
Properties
Item
Item that should be processed
Declaration
public TItem Item { get; set; }
Property Value
| Type | Description |
|---|---|
| TItem |
PrerequisiteTask
Task that must be completed before the item can be processed.
Declaration
public Task PrerequisiteTask { get; set; }
Property Value
| Type | Description |
|---|---|
| Task |