PipelineBuilder<TNode>.AddStage Method
Overloads
Name | Description |
---|---|
Adds a stage to the pipeline that runs Processors serially. Its name will be the number of the stage. | |
Adds a stage to the pipeline with a single Processor<TNode>. Its name will be the number of the stage. | |
Adds a stage with the specified name to the pipeline with a single Processor<TNode>. | |
Adds a stage to the pipeline with the specified Processors to be run serially. Its name will be the number of the stage. | |
Adds a stage with the specified name to the pipeline with the specified Processors to be run serially. |
AddStage(Action<SerialPipelineStageBuilder<TNode>>)
Adds a stage to the pipeline that runs Processors serially. Its name will be the number of the stage.
Parameters
Name | Type | Description |
---|---|---|
build | An action to perform on a SerialPipelineStageBuilder<TNode> to build the pipeline. |
Returns
The fluent builder.
AddStage<TProcessor>()
Adds a stage to the pipeline with a single Processor<TNode>. Its name will be the number of the stage.
Type Parameters
Name | Description |
---|---|
TProcessor | The type of the Processor<TNode>. |
Returns
The fluent builder.
AddStage<TProcessor>(String)
Adds a stage with the specified name to the pipeline with a single Processor<TNode>.
Type Parameters
Name | Description |
---|---|
TProcessor | The type of the Processor<TNode>. |
Parameters
Name | Type | Description |
---|---|---|
name | The name of the stage. |
Returns
The fluent builder.
AddStage(Processor<TNode>, Processor<TNode>[])
Adds a stage to the pipeline with the specified Processors to be run serially. Its name will be the number of the stage.
Parameters
Name | Type | Description |
---|---|---|
processor | The first processor to add. | |
others | Other processors to add. |
Returns
The fluent builder.
AddStage(String, Processor<TNode>, Processor<TNode>[])
Adds a stage with the specified name to the pipeline with the specified Processors to be run serially.
Parameters
Name | Type | Description |
---|---|---|
name | The name of the stage. | |
processor | The first processor to add. | |
others | Other processors to add. |
Returns
The fluent builder.