BasicModuleRegisterTaskQueue Method

Registers a task queue wrapper and opens the task queue in the server. - Opens the task queue in the server. - Registers the TaskQueue object and its associated handlers inside the task queue manager.

Definition

Namespace: MFiles.VAF.Module
Assembly: MFiles.VAF (in MFiles.VAF.dll) Version: 24.1.706.1
C#
public virtual void RegisterTaskQueue(
	string queueName,
	MFTaskQueueProcessingBehavior processingBehavior,
	TaskQueueManagerTaskType taskType,
	IApplicationTaskProcessor taskProcessor,
	int maximumPollingIntervalInSeconds,
	string lastBroadcastId = ""
)

Parameters

queueName  String
Task queue name / identifier.
processingBehavior  MFTaskQueueProcessingBehavior
Processing behavior type.
taskType  TaskQueueManagerTaskType
Defines the type of tasks that can be processed by this task queue.
taskProcessor  IApplicationTaskProcessor
Task processor for this queue.
maximumPollingIntervalInSeconds  Int32
The max time in seconds that can pass before a polling cycle is ran for this queue.
lastBroadcastId  String  (Optional)
The last processed broadcast id, defaults to empty string.

See Also