Modifier and Type | Method and Description |
---|---|
default <V> Function6<A,B,C,D,E,F,V> |
Function6.andThen(Function<? super R,? extends V> after)
Returns a composed function that first applies this function to
its input, and then applies the
after function to the result. |
Modifier and Type | Method and Description |
---|---|
static <R,A,B,C,D,E,F> |
CompletableFutures.combine(CompletionStage<A> a,
CompletionStage<B> b,
CompletionStage<C> c,
CompletionStage<D> d,
CompletionStage<E> e,
CompletionStage<F> f,
Function6<A,B,C,D,E,F,R> function)
Combines multiple stages by applying a function.
|
static <R,A,B,C,D,E,F> |
CompletableFutures.combineFutures(CompletionStage<A> a,
CompletionStage<B> b,
CompletionStage<C> c,
CompletionStage<D> d,
CompletionStage<E> e,
CompletionStage<F> f,
Function6<A,B,C,D,E,F,CompletionStage<R>> function)
Composes multiple stages into another stage using a function.
|
Copyright © 2018 Spotify AB. All rights reserved.