Uses of Interface
com.spotify.futures.Function3
-
-
Uses of Function3 in com.spotify.futures
Methods in com.spotify.futures that return Function3 Modifier and Type Method Description default <V> Function3<A,B,C,V>Function3. 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 Function3 Modifier and Type Method Description static <R,A,B,C>
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, Function3<A,B,C,R> function)Combines multiple stages by applying a function.static <R,A,B,C>
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, Function3<A,B,C,java.util.concurrent.CompletionStage<R>> function)Composes multiple stages into another stage using a function.
-