- pipeline<A, B>(source, destination, options?): PipelinePromise<B>
-
- pipeline<A, T1, B>(source, transform1, destination, options?): PipelinePromise<B>
-
Parameters
-
source: A
-
transform1: T1
-
destination: B
-
- pipeline<A, T1, T2, B>(source, transform1, transform2, destination, options?): PipelinePromise<B>
-
Parameters
-
source: A
-
transform1: T1
-
transform2: T2
-
destination: B
-
- pipeline<A, T1, T2, T3, B>(source, transform1, transform2, transform3, destination, options?): PipelinePromise<B>
-
Parameters
-
source: A
-
transform1: T1
-
transform2: T2
-
transform3: T3
-
destination: B
-
- pipeline<A, T1, T2, T3, T4, B>(source, transform1, transform2, transform3, transform4, destination, options?): PipelinePromise<B>
-
Parameters
-
source: A
-
transform1: T1
-
transform2: T2
-
transform3: T3
-
transform4: T4
-
destination: B
-
- pipeline(streams, options?): Promise<void>
-
Returns Promise<void>
- pipeline(stream1, stream2, ...streams): Promise<void>
-
Returns Promise<void>