Interface ClosingFuture.Combiner5.AsyncClosingFunction5<V1,V2,V3,V4,V5,U>
- Type Parameters:
V1
- the type returned by the first futureV2
- the type returned by the second futureV3
- the type returned by the third futureV4
- the type returned by the fourth futureV5
- the type returned by the fifth futureU
- the type returned by the function
- 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.Combiner5.AsyncClosingFunction5<V1,V2,V3,V4,V5,U>
A function that returns a
ClosingFuture
when applied to the values of the five
futures passed to ClosingFuture.whenAllSucceed(ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture)
.-
Method Summary
Modifier and TypeMethodDescriptionApplies this function to five inputs, or throws an exception if unable to do so.
-
Method Details
-
apply
ClosingFuture<U> apply(ClosingFuture.DeferredCloser closer, V1 value1, V2 value2, V3 value3, V4 value4, V5 value5) throws Exception Applies this function to five 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:
Exception
-