Module dev.mccue.guava.concurrent
Package dev.mccue.guava.concurrent
Interface ClosingFuture.Combiner2.AsyncClosingFunction2<V1 extends @Nullable Object,V2 extends @Nullable Object,U extends @Nullable Object>
- Type Parameters:
V1- the type returned by the first futureV2- the type returned by the second futureU- the type returned by the function
- Enclosing class:
- ClosingFuture.Combiner2<V1 extends @Nullable Object,
V2 extends @Nullable Object>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public static interface ClosingFuture.Combiner2.AsyncClosingFunction2<V1 extends @Nullable Object,V2 extends @Nullable Object,U extends @Nullable Object>
A function that returns a
ClosingFuture when applied to the values of the two futures
passed to #whenAllSucceed(ClosingFuture, ClosingFuture).-
Method Summary
Modifier and TypeMethodDescriptionapply(ClosingFuture.DeferredCloser closer, V1 value1, V2 value2) Applies this function to two inputs, or throws an exception if unable to do so.
-
Method Details
-
apply
Applies this function to two inputs, or throws an exception if unable to do so.Any objects that are passed to
DeferredCloser#eventuallyClose(Object, Executor) closer.eventuallyClose()will be closed when theClosingFuturepipeline is done (but not before this method completes), even if this method throws or the pipeline is cancelled.- Throws:
Exception
-