Uses of Interface
com.spotify.futures.Function4
-
-
Uses of Function4 in com.spotify.futures
Methods in com.spotify.futures that return Function4 Modifier and Type Method Description default <V> Function4<A,B,C,D,V>Function4. andThen(java.util.function.Function<? super R,? extends V> after)Returns a composed function that first applies this function to its input, and then applies theafterfunction to the result.Methods in com.spotify.futures with parameters of type Function4 Modifier and Type Method Description static <R,A,B,C,D>
java.util.concurrent.CompletionStage<R>CompletableFutures. combine(java.util.concurrent.CompletionStage<A> a, java.util.concurrent.CompletionStage<B> b, java.util.concurrent.CompletionStage<C> c, java.util.concurrent.CompletionStage<D> d, Function4<A,B,C,D,R> function)Combines multiple stages by applying a function.static <R,A,B,C,D>
java.util.concurrent.CompletionStage<R>CompletableFutures. combineFutures(java.util.concurrent.CompletionStage<A> a, java.util.concurrent.CompletionStage<B> b, java.util.concurrent.CompletionStage<C> c, java.util.concurrent.CompletionStage<D> d, Function4<A,B,C,D,java.util.concurrent.CompletionStage<R>> function)Composes multiple stages into another stage using a function.
-