ParallelWorkBrokerSingletonQueueWorkOnBurstQueueT Method (FuncT) | 
 
            Helper method to quickly queue work on the burst queue.
            
 
    Namespace: 
   SD.LLBLGen.Pro.ApplicationCore.Parallelization
    Assembly:
   SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.8.0.0 (5.8.21.0208)
Syntaxpublic static Task<T> QueueWorkOnBurstQueue<T>(
	Func<T> workToQueue
)
Public Shared Function QueueWorkOnBurstQueue(Of T) ( 
	workToQueue As Func(Of T)
) As Task(Of T)
Parameters
- workToQueue
 - Type: SystemFuncT
the func which represents the work to queue on the burst queue 
Type Parameters
- T
 - The type of the return value of the func to queue
 
Return Value
Type: 
TaskT
See Also