Creates the ListenableFuture which will return the result of calling AsyncCallable#call in combiner when all futures complete, using the specified executor. If the combiner throws a CancellationException, the returned future will be cancelled. If the c
(AsyncCallable<C> combiner, Executor executor)
| 888 | |
| 889 | |
| 890 | public <C> ListenableFuture<C> callAsync(AsyncCallable<C> combiner, Executor executor) { |
| 891 | return new CombinedFuture<C>(futures, allMustSucceed, executor, combiner); |
| 892 | } |
| 893 | |
| 894 | /** |
| 895 | * Like {@link #callAsync(AsyncCallable, Executor)} but using {@linkplain |
nothing calls this directly
no test coverage detected