Click or drag to resize
ParallelWorkBrokerQueueWork Method (Action, DispatchQueueType, 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.3.0.0 (5.3.0)
Syntax
public Task QueueWork(
	Action workToQueueFunc,
	DispatchQueueType queueToUse,
	Action<Task> continuationFunc
)

Parameters

workToQueueFunc
Type: SystemAction
The work.
queueToUse
Type: SD.LLBLGen.Pro.ApplicationCoreDispatchQueueType
The queue to use.
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
See Also