 | JobBuilderGenerate(Int32, Type) Method |
Generates records using a task that takes no input.
Namespace: Ookii.Jumbo.Jet.Jobs.BuilderAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic 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 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
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