ParallelWorkBrokerQueueWork Method (Action, DispatchQueueType, CancellationToken, TaskCreationOptions, ActionTask) |
Queues the work specified in the form of the func workToQueueFunc, on the queue specified.
Namespace:
SD.LLBLGen.Pro.ApplicationCore.Parallelization
Assembly:
SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.2.0.0 (5.2.17.0403)
Syntax public Task QueueWork(
Action workToQueueFunc,
DispatchQueueType queueToUse,
CancellationToken cancellationToken,
TaskCreationOptions options,
Action<Task> continuationFunc
)
Public Function QueueWork (
workToQueueFunc As Action,
queueToUse As DispatchQueueType,
cancellationToken As CancellationToken,
options As TaskCreationOptions,
continuationFunc As Action(Of Task)
) As Task
Parameters
- workToQueueFunc
- Type: SystemAction
The work. - queueToUse
- Type: SD.LLBLGen.Pro.ApplicationCoreDispatchQueueType
The queue to use. - cancellationToken
- Type: System.ThreadingCancellationToken
The cancellation token. - options
- Type: System.Threading.TasksTaskCreationOptions
The task creation options for the task to be created by this method. - continuationFunc
- Type: SystemActionTask
The continuation function to pass to ContinueWith on the created task if not null. If null, no continuation is created.
Return Value
Type:
Task
The task created which is dispatched on the queue specified
Exceptions See Also