ProcessingQueue Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Class allowing to enforce in-order processing of tasks.
public class ProcessingQueue
type ProcessingQueue = class
Public Class ProcessingQueue
- Inheritance
-
ProcessingQueue
Constructors
| ProcessingQueue(Action<Exception>, String) |
Methods
| Complete() |
The queue will not accept any more tasks after calling complete. |
| ConcurrentExecution(Action) |
Executes |
| ConcurrentExecution<T>(Func<T>, T) |
Executes |
| ConcurrentExecutionAsync(Action) |
Enqueues |
| QueueForExecution(Action) |
Executes |
| QueueForExecution<T>(Func<T>, T) |
Executes |
| QueueForExecutionAsync(Action) |
Enqueues |