Class ClosingFuture.Combiner5<V1 extends @Nullable java.lang.Object,V2 extends @Nullable java.lang.Object,V3 extends @Nullable java.lang.Object,V4 extends @Nullable java.lang.Object,V5 extends @Nullable java.lang.Object>
- java.lang.Object
- 
- com.google.common.util.concurrent.ClosingFuture.Combiner
- 
- com.google.common.util.concurrent.ClosingFuture.Combiner5<V1,V2,V3,V4,V5>
 
 
- 
- 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
- V4- the type returned by the fourth future
- V5- the type returned by the fifth future
 - Enclosing class:
- ClosingFuture<V extends @Nullable java.lang.Object>
 
 public static final class ClosingFuture.Combiner5<V1 extends @Nullable java.lang.Object,V2 extends @Nullable java.lang.Object,V3 extends @Nullable java.lang.Object,V4 extends @Nullable java.lang.Object,V5 extends @Nullable java.lang.Object> extends ClosingFuture.Combiner A genericClosingFuture.Combinerthat lets you use a lambda or method reference to combine fiveClosingFutures. UseClosingFuture.whenAllSucceed(ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture)to start this combination.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static interfaceClosingFuture.Combiner5.AsyncClosingFunction5<V1 extends @Nullable java.lang.Object,V2 extends @Nullable java.lang.Object,V3 extends @Nullable java.lang.Object,V4 extends @Nullable java.lang.Object,V5 extends @Nullable java.lang.Object,U extends @Nullable java.lang.Object>A function that returns aClosingFuturewhen applied to the values of the five futures passed toClosingFuture.whenAllSucceed(ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture).static interfaceClosingFuture.Combiner5.ClosingFunction5<V1 extends @Nullable java.lang.Object,V2 extends @Nullable java.lang.Object,V3 extends @Nullable java.lang.Object,V4 extends @Nullable java.lang.Object,V5 extends @Nullable java.lang.Object,U extends @Nullable java.lang.Object>A function that returns a value when applied to the values of the five futures passed toClosingFuture.whenAllSucceed(ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture).- 
Nested classes/interfaces inherited from class com.google.common.util.concurrent.ClosingFuture.CombinerClosingFuture.Combiner.AsyncCombiningCallable<V extends @Nullable java.lang.Object>, ClosingFuture.Combiner.CombiningCallable<V extends @Nullable java.lang.Object>
 
- 
 - 
Field Summary- 
Fields inherited from class com.google.common.util.concurrent.ClosingFuture.Combinerinputs
 
- 
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description <U extends @Nullable java.lang.Object>
 ClosingFuture<U>call(ClosingFuture.Combiner5.ClosingFunction5<V1,V2,V3,V4,V5,U> function, java.util.concurrent.Executor executor)Returns a newClosingFuturepipeline step derived from the inputs by applying a combining function to their values.<U extends @Nullable java.lang.Object>
 ClosingFuture<U>callAsync(ClosingFuture.Combiner5.AsyncClosingFunction5<V1,V2,V3,V4,V5,U> function, java.util.concurrent.Executor executor)Returns a newClosingFuturepipeline step derived from the inputs by applying aClosingFuture-returning function to their values.- 
Methods inherited from class com.google.common.util.concurrent.ClosingFuture.Combinercall, callAsync
 
- 
 
- 
- 
- 
Method Detail- 
callpublic <U extends @Nullable java.lang.Object> ClosingFuture<U> call(ClosingFuture.Combiner5.ClosingFunction5<V1,V2,V3,V4,V5,U> function, java.util.concurrent.Executor executor) Returns a newClosingFuturepipeline step derived from the inputs by applying a combining function to their values. The function can use aClosingFuture.DeferredCloserto capture objects to be closed when the pipeline is done.If this combiner was returned by ClosingFuture.whenAllSucceed(ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture)and any of the inputs fail, so will the returned step.If the function throws a CancellationException, the pipeline will be cancelled.If the function throws an ExecutionException, the cause of the thrownExecutionExceptionwill be extracted and used as the failure of the derived step.
 - 
callAsyncpublic <U extends @Nullable java.lang.Object> ClosingFuture<U> callAsync(ClosingFuture.Combiner5.AsyncClosingFunction5<V1,V2,V3,V4,V5,U> function, java.util.concurrent.Executor executor) Returns a newClosingFuturepipeline step derived from the inputs by applying aClosingFuture-returning function to their values. The function can use aClosingFuture.DeferredCloserto capture objects to be closed when the pipeline is done (other than those captured by the returnedClosingFuture).If this combiner was returned by ClosingFuture.whenAllSucceed(ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture, ClosingFuture)and any of the inputs fail, so will the returned step.If the function throws a CancellationException, the pipeline will be cancelled.If the function throws an ExecutionException, the cause of the thrownExecutionExceptionwill be extracted and used as the failure of the derived step.If the function throws any other exception, it will be used as the failure of the derived step. If an exception is thrown after the function creates a ClosingFuture, then none of the closeable objects in thatClosingFuturewill be closed.Usage guidelines for this method: - Use this method only when calling an API that returns a ListenableFutureor aClosingFuture. If possible, prefer callingClosingFuture.Combiner.call(CombiningCallable, Executor)instead, with a function that returns the next value directly.
- Call closer.eventuallyClose()for every closeable object this step creates in order to capture it for later closing.
- Return a ClosingFuture. To turn aListenableFutureinto aClosingFuturecallClosingFuture.from(ListenableFuture).
 The same warnings about doing heavyweight operations within ClosingFuture.transformAsync(AsyncClosingFunction, Executor)apply here.
- Use this method only when calling an API that returns a 
 
- 
 
-