Click or drag to resize

RealTimeStateMachineConfigSetWorkFuncForWorkId Method

Sets the work function to execute for the work identifier specified. It will be scheduled on the queue with the specified queuetype.

Namespace:  SD.LLBLGen.Pro.ApplicationCore.Parallelization
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax
public void SetWorkFuncForWorkId(
	string workId,
	Action<RealTimeWorkController, string> workFunc,
	DispatchQueueType queueType
)

Parameters

workId
Type: SystemString
The work identifier.
workFunc
Type: SystemActionRealTimeWorkController, String
The work function.
queueType
Type: SD.LLBLGen.Pro.ApplicationCoreDispatchQueueType
Type of the queue to dispatch the workFunc on.
See Also