Skip to content

Home > @idealeap/pipeline > Pipe

Pipe class

Represents a processing unit within a pipeline. It encapsulates a callback function and various options to control its behavior.

Signature:

typescript
export declare class Pipe<T, R>
export declare class Pipe<T, R>

Constructors

ConstructorModifiersDescription
(constructor)(callback, options)Constructs a new instance of the Pipe.

Properties

PropertyModifiersTypeDescription
optionsPipeOptions<T, R>

Methods

MethodModifiersDescription
create(callback, options)staticCreates and returns a new Pipe instance. This static method is designed to support chaining.
enableBatching()Set batch = true for the pipe.
execute(input_, context_)Executes the pipe's main functionality, handling batching if enabled, and managing retries, errors, pre-processing, and post-processing.
fromJSON(json, callback, predefinedUses)staticCreates a new Pipe instance from a serializable options object.
setDescription(description)Sets the description of the pipe.
setId(id)Sets the ID of the pipe.
setRetries(retries)Sets the number of retries for the pipe.
shouldExecute(context)Sets a dynamic dependency check function that returns a boolean to determine whether the pipe should be executed.

Released under the MIT License.