Skip to content

Home > @idealeap/pipeline > Pipeline > addPipe

Pipeline.addPipe() method

Adds one or more pipes to the pipeline.

Signature:

typescript
addPipe<T, R>(pipe: Pipe<T, R> | Pipe<T, R>[]): this;
addPipe<T, R>(pipe: Pipe<T, R> | Pipe<T, R>[]): this;

Parameters

ParameterTypeDescription
pipePipe<T, R> | Pipe<T, R>[]A single pipe or an array of pipes to add to the pipeline.

Returns:

this

The updated pipeline instance.

Released under the MIT License.