Interface ClosingFuture.Combiner3.ClosingFunction3<V1,V2,V3,U>
-
- 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,V2,V3>
public static interface ClosingFuture.Combiner3.ClosingFunction3<V1,V2,V3,U>
A function that returns a value 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 U
apply(ClosingFuture.DeferredCloser closer, V1 value1, V2 value2, V3 v3)
Applies this function to three inputs, or throws an exception if unable to do so.
-
-
-
Method Detail
-
apply
@NullableDecl U apply(ClosingFuture.DeferredCloser closer, @NullableDecl V1 value1, @NullableDecl V2 value2, @NullableDecl V3 v3) 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 theClosingFuture
pipeline is done (but not before this method completes), even if this method throws or the pipeline is cancelled.- Throws:
Exception
-
-