-
Returns a composed function that first applies this function to
its input, and then applies the after function to the result.
CompletableFutures.combine(CompletionStage<A> a,
CompletionStage<B> b,
CompletionStage<C> c,
CompletionStage<D> d,
CompletionStage<E> e,
Function5<A,B,C,D,E,R> function)
Combines multiple stages by applying a function.
CompletableFutures.combineFutures(CompletionStage<A> a,
CompletionStage<B> b,
CompletionStage<C> c,
CompletionStage<D> d,
CompletionStage<E> e,
Function5<A,B,C,D,E,CompletionStage<R>> function)
Composes multiple stages into another stage using a function.