|  | 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
Syntaxbool NotifyStartPartitionProcessing(
	Guid jobId,
	TaskId taskId,
	int partitionNumber
)
Function NotifyStartPartitionProcessing ( 
	jobId As Guid,
	taskId As TaskId,
	partitionNumber As Integer
) As Boolean
bool NotifyStartPartitionProcessing(
	Guid jobId, 
	TaskId^ taskId, 
	int partitionNumber
)
abstract NotifyStartPartitionProcessing : 
        jobId : Guid * 
        taskId : TaskId * 
        partitionNumber : int -> bool 
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
Remarks See Also
See Also