Uses of Interface
com.spotify.futures.FuturesExtra.AsyncFunction6

  • Uses of FuturesExtra.AsyncFunction6 in com.spotify.futures

    Methods in com.spotify.futures with parameters of type FuturesExtra.AsyncFunction6
    Modifier and Type
    Method
    Description
    static <Z, A, B, C, D, E, F>
    com.google.common.util.concurrent.ListenableFuture<Z>
    FuturesExtra.asyncTransform6(com.google.common.util.concurrent.ListenableFuture<A> a, com.google.common.util.concurrent.ListenableFuture<B> b, com.google.common.util.concurrent.ListenableFuture<C> c, com.google.common.util.concurrent.ListenableFuture<D> d, com.google.common.util.concurrent.ListenableFuture<E> e, com.google.common.util.concurrent.ListenableFuture<F> f, FuturesExtra.AsyncFunction6<Z,? super A,? super B,? super C,? super D,? super E,? super F> function)
    Transform the input futures into a single future, using the provided transform function.
    static <Z, A, B, C, D, E, F>
    com.google.common.util.concurrent.ListenableFuture<Z>
    FuturesExtra.asyncTransform6(com.google.common.util.concurrent.ListenableFuture<A> a, com.google.common.util.concurrent.ListenableFuture<B> b, com.google.common.util.concurrent.ListenableFuture<C> c, com.google.common.util.concurrent.ListenableFuture<D> d, com.google.common.util.concurrent.ListenableFuture<E> e, com.google.common.util.concurrent.ListenableFuture<F> f, FuturesExtra.AsyncFunction6<Z,? super A,? super B,? super C,? super D,? super E,? super F> function, Executor executor)
    Transform the input futures into a single future, using the provided transform function.