- pipeAsync<T>(): AsyncOperationFunction<T, T>
- pipeAsync<T, A>(op1): AsyncOperationFunction<T, A>
- pipeAsync<T, A, B>(op1, op2): AsyncOperationFunction<T, B>
- pipeAsync<T, A, B, C>(op1, op2, op3): AsyncOperationFunction<T, C>
- pipeAsync<T, A, B, C, D>(op1, op2, op3, op4): AsyncOperationFunction<T, D>
- pipeAsync<T, A, B, C, D, E>(op1, op2, op3, op4, op5): AsyncOperationFunction<T, E>
- pipeAsync<T, A, B, C, D, E, F>(op1, op2, op3, op4, op5, op6): AsyncOperationFunction<T, F>
- pipeAsync<T, A, B, C, D, E, F, G>(op1, op2, op3, op4, op5, op6, op7): AsyncOperationFunction<T, G>
- pipeAsync<T, A, B, C, D, E, F, G, H>(op1, op2, op3, op4, op5, op6, op7, op8): AsyncOperationFunction<T, H>
- pipeAsync<T, A, B, C, D, E, F, G, H, I>(op1, op2, op3, op4, op5, op6, op7, op8, op9): AsyncOperationFunction<T, I>
- pipeAsync<T, A, B, C, D, E, F, G, H, I, J>(op1, op2, op3, op4, op5, op6, op7, op8, op9, op10): AsyncOperationFunction<T, unknown>
Parameters
- op1: AsyncOperationFunction<T, A>
- op2: AsyncOperationFunction<A, B>
- op3: AsyncOperationFunction<B, C>
- op4: AsyncOperationFunction<C, D>
- op5: AsyncOperationFunction<D, E>
- op6: AsyncOperationFunction<E, F>
- op7: AsyncOperationFunction<F, G>
- op8: AsyncOperationFunction<G, H>
- op9: AsyncOperationFunction<H, I>
- op10: AsyncOperationFunction<I, J>
Type-safe helper operation that concatenates multiple operations in order.