Click or drag to resize

JobBuilderGenerate(Int32, Type) 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(
	int taskCount,
	Type taskType
)

Parameters

taskCount  Int32
The number of tasks in the stage.
taskType  Type
Type of the task. May be a generic type definition with a single type parameter.

Return Value

StageOperation
A StageOperation instance that can be used to further customize the operation.
Remarks
Note  Note
The stage created by this method will have no input, so the input record reader for the task will be .

You can use the NoInputTaskT class as a base class for tasks used with this method, although this is not a requirement.

See Also