Click or drag to resize

JobBuilderGenerateT(Int32, ActionRecordWriterT, TaskContext) Method

Generates records using a task that takes no input.

Namespace: Ookii.Jumbo.Jet.Jobs.Builder
Assembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
public StageOperation Generate<T>(
	int taskCount,
	Action<RecordWriter<T>, TaskContext> generator
)

Parameters

taskCount  Int32
The task count.
generator  ActionRecordWriterT, TaskContext
The generator function.

Type Parameters

T
The type of the records.

Return Value

StageOperation
A StageOperation instance that can be used to further customize the operation.
Remarks

This method generates a class implementing ITaskTInput, TOutput which calls the target method of the generator delegate from the Run(RecordReaderTInput, RecordWriterTOutput) method.

Note  Note
The task method will be called from a completely different process than the one that is using JobBuilder, so it should not really on any external state.

The target method must be a public static method.

See Also