Futures-extra
Futures-extra is a set of small utility functions to simplify working with Guava's ListenableFuture class
Build status
Maven central
Build dependencies
- Java 8 or higher
- Maven
Runtime dependencies
- Java 8 or higher
- Guava 21.0 or higher
- Google
api-common
fromcom.google.api
Usage
Futures-extra is meant to be used as a library embedded in other software. To import it with maven, use this:
<dependency>
<groupId>com.spotify</groupId>
<artifactId>futures-extra</artifactId>
<version>4.2.0</version>
</dependency>
Examples
Joining multiple futures
A common use case is waiting for two or more futures and then transforming the result to something else. You can do this in a couple of different ways, here are two of them:
final ListenableFuture<A> futureA = getFutureA();
final ListenableFuture<B> futureB = getFutureB();
ListenableFuture<C> ret = Futures.transform(Futures.allAsList(futureA, futureB),
(Function<List<?>, C>)list -> combine((A) list.get(0), (B) list.get(1), executor);
where combine is a method with parameters of type A and B returning C.
This one has the problem that you have to manually make sure that the casts and ordering are correct, otherwise you will get ClassCastException.
You could also access the futures directly to avoid casts:
final ListenableFuture<A> futureA = getFutureA();
final ListenableFuture<B> futureB = getFutureB();
ListenableFuture<C> ret = Futures.transform(Futures.allAsList(futureA, futureB),
(Function<List<?>, C>)list -> combine(Futures.getUnchecked(futureA), Futures.getUnchecked(futureB), executor);
Now you instead need to make sure that the futures in the transform input are the same as the ones you getUnchecked. If you fail to do this, things may work anyway (which is a good way of hiding bugs), but block the thread, actually removing the asynchronous advantage. Even worse - the future may never finish, blocking the thread forever.
To simplify these use cases we have a couple of helper functions:
final ListenableFuture<A> futureA = getFutureA();
final ListenableFuture<B> futureB = getFutureB();
ListenableFuture<C> ret = FuturesExtra.syncTransform2(futureA, futureB,
(a, b) -> combine(a, b), executor);
This is much clearer! We don't need any type information because the lambda can infer it, and we avoid the potential bugs that can occur as a result of the first to examples.
The tuple transform can be used up to 6 arguments named syncTransform2() through syncTransform6(). If you need more than that you could probably benefit from some refactoring, but you can also use FuturesExtra.join():
final ListenableFuture<A> futureA = getFutureA();
final ListenableFuture<B> futureB = getFutureB();
final ListenableFuture<JoinedResults> futureJoined = FuturesExtra.join(executor, futureA, futureB);
return Futures.transform(futureJoined,
joined -> combine(joined.get(futureA), joined.get(futureB)), executor);
This supports an arbitrary number of futures, but is slightly more complex. However, it is much safer than the first two examples, because joined.get(...) will fail if you try to get the value of a future that was not part of the input.
Timeouts
Sometimes you want to stop waiting for a future after a specific timeout and to do this you generally need to have some sort of scheduling involved. To simplify that, you can use this:
final ListenableFuture<A> future = getFuture();
final ListenableFuture<A> futureWithTimeout = FuturesExtra.makeTimeoutFuture(scheduledExecutor, future, 100, TimeUnit.MILLISECONDS);
Select
If you have some futures and want to succeed as soon as the first one succeeds, you can use select:
final List<ListenableFuture<A>> futures = getFutures();
final ListenableFuture<A> firstSuccessful = FuturesExtra.select(futures, executor);
Success/Failure callbacks
You can attach callbacks that are run depending on the results of a future:
final ListenableFuture<A> future = getFuture();
FuturesExtra.addCallback(future, System.out::println, Throwable::printStackTrace, executor);
Alternatively, if you are only interested in either successful or failed results of a future, you can use:
final ListenableFuture<A> future = getFuture();
FuturesExtra.addSuccessCallback(future, System.out::println, executor);
final ListenableFuture<B> future = getFuture();
FuturesExtra.addFailureCallback(future, System.out::println, executor);
Concurrency limiting
If you want to fire of a large number of asynchronous requests or jobs,
it can be useful to limit how many will run concurrently.
To help with this, there is a new class called ConcurrencyLimiter
.
You use it like this:
int maxConcurrency = 10;
int maxQueueSize = 100;
ConcurrencyLimiter<T> limiter = ConcurrencyLimiter.create(maxConcurrency, maxQueueSize);
for (int i = 0; i < 1000; i++) {
ListenableFuture<T> future = limiter.add(() -> createFuture());
}
The concurrency limiter will ensure that at most 10 futures are created and
incomplete at the same time. All the jobs that are passed into
ConcurrencyLimiter.add()
will wait in a queue until the concurrency is below
the limit.
The jobs you pass in should not be blocking or be overly CPU intensive. If that is something you need you should let your ConcurrencyLimiter jobs push the work on a thread pool.
The internal queue is bounded and if its limit is reached it, the call to add will return
a failed future of ConcurrencyLimiter.CapacityReachedException
.
Completed futures
In some cases you want to extract the value (or exception) from the future and you know that the future is completed so it won't be a blocking operation.
You could use these methods for that, but they will also block if the future is not complete which may lead to hard to find bugs.
T value = future.get();
T value = Futures.getUnchecked(future);
Instead you can use these methods which will never block but instead immediately throw an exception if the future is not completed. This is typically useful in unit tests (where futures should be immediate) and in general future callbacks/transforms where you know that a specific future must be completed for this codepath to be triggered.
T value = FuturesExtra.getCompleted(future);
Throwable exc = FuturesExtra.getException(future);
JDK 8 CompletableFuture <-> ListenableFuture Conversion
- From
ListenableFuture
To JDK 8CompletableFuture
ListenableFuture<V> listenable = getFuture();
CompletableFuture<V> completable = ListenableFuturesExtra.toCompletableFuture(listenable);
- From JDK 8
CompletableFuture
ToListenableFuture
CompletableFuture<V> completable = getFuture();
ListenableFuture<V> listenable = CompletableFuturesExtra.toListenableFuture(completable);
- From
ApiFuture
to JDK 8CompletableFuture
(especially useful when using Google client libraries)
ApiFuture<V> apiFuture = getFuture();
CompletableFuture<V> completable = ApiFuturesExtra.toCompletableFuture(apiFuture);
- From JDK 8
CompletableFuture
toApiFuture
(especially useful when using Google client libraries)
CompletableFuture<V> completable = getFuture();
ApiFuture<V> apiFuture = CompletableFuturesExtra.toApiFuture(completable);
Ownership
The Weaver squad is currently owning this project internally. We are currently in the evaluating process of the ownership of this and other OSS Java libraries. The ownership takes into account ONLY security maintenance.
This repo is also co-owned by other people: