| JobBuilderGenerate Method (Int32, Type) |
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: 2.0.0
Syntax public StageOperation Generate(
int taskCount,
Type taskType
)
Public Function Generate (
taskCount As Integer,
taskType As Type
) As StageOperation
public:
StageOperation^ Generate(
int taskCount,
Type^ taskType
)
member Generate :
taskCount : int *
taskType : Type -> StageOperation
Parameters
- taskCount
- Type: SystemInt32
The number of tasks in the stage. - taskType
- Type: SystemType
Type of the task. May be a generic type definition with a single type parameter.
Return Value
Type:
StageOperationA
StageOperation instance that can be used to further customize the operation.
Remarks 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