| WorkOptionsQueueFIFO Property |
Gets or sets a value indicating whether this work should be queued in a first-in-first-out
(FIFO) order.
Namespace: DigitalRune.ThreadingAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public bool QueueFIFO { get; set; }
Public Property QueueFIFO As Boolean
Get
Set
public:
property bool QueueFIFO {
bool get ();
void set (bool value);
}
member QueueFIFO : bool with get, set
Property Value
Type:
Boolean if the task should be queued in FIFO order; otherwise,
.
Remarks
FIFO order: The task will be started after all currently existing tasks.
See Also