Click or drag to resize

IJobServerTaskProtocolNotifyStartPartitionProcessing Method

Notifies the job server that a task is about to start processing the specified partition.

Namespace:  Ookii.Jumbo.Jet
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
bool NotifyStartPartitionProcessing(
	Guid jobId,
	TaskId taskId,
	int partitionNumber
)

Parameters

jobId
Type: SystemGuid
The job ID.
taskId
Type: Ookii.Jumbo.JetTaskId
The task ID.
partitionNumber
Type: SystemInt32
The partition number.

Return Value

Type: Boolean
if the task should start processing the partition; if it has been reassigned to another task.
Remarks

This method needn't be called for the first partition returned by GetPartitionsForTask(Guid, TaskId) or GetAdditionalPartitions(Guid, TaskId); that partition is implicitly considered to immediately start processing.

See Also