Interface ClosingFuture.Combiner3.AsyncClosingFunction3<V1 extends @Nullable java.lang.Object,V2 extends @Nullable java.lang.Object,V3 extends @Nullable java.lang.Object,U extends @Nullable java.lang.Object>
-
- Type Parameters:
V1
- the type returned by the first futureV2
- the type returned by the second futureV3
- the type returned by the third futureU
- the type returned by the function
- Enclosing class:
- ClosingFuture.Combiner3<V1 extends @Nullable java.lang.Object,V2 extends @Nullable java.lang.Object,V3 extends @Nullable java.lang.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.Combiner3.AsyncClosingFunction3<V1 extends @Nullable java.lang.Object,V2 extends @Nullable java.lang.Object,V3 extends @Nullable java.lang.Object,U extends @Nullable java.lang.Object>
A function that returns aClosingFuture
when applied to the values of the three futures passed toClosingFuture.whenAllSucceed(ClosingFuture, ClosingFuture, ClosingFuture)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClosingFuture<U>
apply(ClosingFuture.DeferredCloser closer, V1 value1, V2 value2, V3 value3)
Applies this function to three inputs, or throws an exception if unable to do so.
-
-
-
Method Detail
-
apply
ClosingFuture<U> apply(ClosingFuture.DeferredCloser closer, V1 value1, V2 value2, V3 value3) throws java.lang.Exception
Applies this function to three inputs, or throws an exception if unable to do so.Any objects that are passed to
closer.eventuallyClose()
will be closed when theClosingFuture
pipeline is done (but not before this method completes), even if this method throws or the pipeline is cancelled.- Throws:
java.lang.Exception
-
-