PipelineBuilder<TNode> Class
Definition
Fluent builder for a pipeline stage.
Type Parameters
Name | Description |
---|---|
TNode |
Constructors
Name | Description |
---|---|
Methods
Name | Description |
---|---|
AddParallelStage(Action<ParallelPipelineStageBuilder<TNode>>) | Adds a stage to the pipeline that runs UnorderedProcessors in parallel. Its name will be the number of the stage. |
AddParallelStage(UnorderedProcessor<TNode>, UnorderedProcessor<TNode>, UnorderedProcessor<TNode> []) | 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. | |
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<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. |