Class ClosingFuture.Combiner
- Direct Known Subclasses:
ClosingFuture.Combiner2, ClosingFuture.Combiner3, ClosingFuture.Combiner4, ClosingFuture.Combiner5
- Enclosing class:
ClosingFuture<V extends @Nullable Object>
ClosingFuture step that is derived from more than one input step.
See ClosingFuture.whenAllComplete(Iterable) and ClosingFuture.whenAllSucceed(Iterable) for how to
instantiate this class.
Example:
final ClosingFuture<BufferedReader> file1ReaderFuture = ...;
final ClosingFuture<BufferedReader> file2ReaderFuture = ...;
ListenableFuture<Integer> numberOfDifferentLines =
ClosingFuture.whenAllSucceed(file1ReaderFuture, file2ReaderFuture)
.call(
(closer, peeker) -> {
BufferedReader file1Reader = peeker.getDone(file1ReaderFuture);
BufferedReader file2Reader = peeker.getDone(file2ReaderFuture);
return countDifferentLines(file1Reader, file2Reader);
},
executor)
.closing(executor);
- Since:
- 30.0
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceAn operation that returns aClosingFutureresult and may throw an exception.static interfaceAn operation that returns a result and may throw an exception. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescription<V extends @Nullable Object>
ClosingFuture<V> call(ClosingFuture.Combiner.CombiningCallable<V> combiningCallable, Executor executor) Returns a newClosingFuturepipeline step derived from the inputs by applying a combining function to their values.<V extends @Nullable Object>
ClosingFuture<V> callAsync(ClosingFuture.Combiner.AsyncCombiningCallable<V> combiningCallable, Executor executor) Returns a newClosingFuturepipeline step derived from the inputs by applying aClosingFuture-returning function to their values.
-
Field Details
-
inputs
-
-
Method Details
-
call
public <V extends @Nullable Object> ClosingFuture<V> call(ClosingFuture.Combiner.CombiningCallable<V> combiningCallable, 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 a
ClosingFuture.whenAllSucceed(Iterable)method and any of the inputs fail, so will the returned step.If the combiningCallable throws a
CancellationException, the pipeline will be cancelled.If the combiningCallable throws an
ExecutionException, the cause of the thrownExecutionExceptionwill be extracted and used as the failure of the derived step. -
callAsync
public <V extends @Nullable Object> ClosingFuture<V> callAsync(ClosingFuture.Combiner.AsyncCombiningCallable<V> combiningCallable, 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 a
ClosingFuture.whenAllSucceed(Iterable)method and any of the inputs fail, so will the returned step.If the combiningCallable throws a
CancellationException, the pipeline will be cancelled.If the combiningCallable throws an
ExecutionException, the cause of the thrownExecutionExceptionwill be extracted and used as the failure of the derived step.If the combiningCallable throws any other exception, it will be used as the failure of the derived step.
If an exception is thrown after the combiningCallable 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 callingcall(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
-