PipelineStageBuilder<TSelf, TProcessor, TNode>.Add Method
Overloads
Name | Description |
---|---|
Adds a Processor<TNode> of the specified type to the current stage. | |
Adds Processors to the current stage. |
Add<TConstructableProcessor>()
Adds a Processor<TNode> of the specified type to the current stage.
public TSelf Add<TConstructableProcessor>()
where TConstructableProcessor : TProcessor, new();
Type Parameters
Name | Description |
---|---|
TConstructableProcessor | The type of the processor to add. |
Returns
TSelf
The fluent builder.
Add(TProcessor, TProcessor[])
Adds Processors to the current stage.
public TSelf Add(TProcessor processor, params TProcessor[] others);
Parameters
Name | Type | Description |
---|---|---|
processor | TProcessor | The first processor to add. |
others | TProcessor[] | Other processors to add. |
Returns
TSelf
The fluent builder.
Last modified: 22 November 2024