Interface ClosingFuture.Combiner3.AsyncClosingFunction3<V1 extends @Nullable Object, V2 extends @Nullable Object, V3 extends @Nullable Object, U extends @Nullable Object>
- Type Parameters:
- V1- the type returned by the first future
- V2- the type returned by the second future
- V3- the type returned by the third future
- U- the type returned by the function
- Enclosing class:
- ClosingFuture.Combiner3<V1 extends @Nullable Object, V2 extends @Nullable Object, V3 extends @Nullable Object>
public static interface ClosingFuture.Combiner3.AsyncClosingFunction3<V1 extends @Nullable Object, V2 extends @Nullable Object, V3 extends @Nullable Object, U extends @Nullable Object>
A function that returns a 
ClosingFuture when applied to the values of the three
 futures passed to ClosingFuture.whenAllSucceed(ClosingFuture, ClosingFuture, ClosingFuture).- Since:
- 30.0
- 
Method SummaryModifier and TypeMethodDescriptionapply(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 Details- 
applyClosingFuture<U> apply(ClosingFuture.DeferredCloser closer, V1 value1, V2 value2, V3 value3) throws 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 theClosingFuturepipeline is done (but not before this method completes), even if this method throws or the pipeline is cancelled.- Throws:
- Exception
 
 
-