TwoStepOperation Class |
Namespace: Ookii.Jumbo.Jet.Jobs.Builder
The TwoStepOperation type exposes the following members.
Name | Description | |
---|---|---|
TwoStepOperation |
Initializes a new instance of the TwoStepOperation class.
|
Name | Description | |
---|---|---|
FirstStepStage |
Gets the StageConfiguration for the first step.
| |
InputChannel |
Gets the input channel for this operation.
(Inherited from StageOperation.) | |
Output |
Gets the output for this operation.
(Inherited from StageOperationBase.) | |
SecondStepStageId |
Gets or sets the stage ID for the second step, if one is created.
| |
SecondStepTaskType |
Gets the type of the task for the second step, if one is created.
| |
Settings |
Gets the settings for the stage.
(Inherited from StageOperationBase.) | |
StageId |
Gets or sets the name of the stage that will be created from this operation.
(Inherited from StageOperationBase.) | |
TaskType |
Gets information about the type of the task.
(Inherited from StageOperationBase.) |
Name | Description | |
---|---|---|
AddSchedulingDependency |
Adds a scheduling dependency on the specified stage to this stage.
(Inherited from StageOperationBase.) | |
CreateConfiguration |
Creates the configuration for this stage.
(Overrides StageOperationCreateConfiguration(JobBuilderCompiler).) | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Sorting is an example of a two step operation: first each input is locally sorted, and then the result is merged on the receiving side of the channel.
The additional step is only created when necessary. If the input is a channel with only one task in the sending stage (or a file input with only one split), or the channel type is explicitly set to pipeline no additional step is created.
Any settings specified in the Settings property will be applied to both stages created for this step.