PipelineBuilder<TBaseNode> Class
Definition
Fluent builder for a pipeline stage.
Type Parameters
Name | Description |
---|---|
TBaseNode | The base type of nodes in the tree. |
Constructors
Name | Description |
---|---|
Methods
Name | Description |
---|---|
AddParallelStage(Action<ParallelPipelineStageBuilder<TBaseNode>>) | Adds a stage to the pipeline that runs Processors in parallel. Its name will be the number of the stage. |
Adds a stage to the pipeline with the specified Processors to be run in parallel. 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 in parallel. Its name will be the number of the stage. | |
Adds a stage to the pipeline with the specified Processors to be run in parallel with the specified maximum degree of parallelism. Its name will be the number of the stage. | |
AddParallelStage(String, Int32, IEnumerable<Processor<TBaseNode>>) | Adds a stage with the specified name to the pipeline with the specified Processors to be run in parallel with the specified maximum degree of parallelism. |
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<TBaseNode>. Its name will be the number of the stage. | |
Adds a stage with the specified name to the pipeline with a single Processor<TBaseNode>. | |
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. |