The Future is Completable in Java 8
As I mentioned in my previous post, interface FutureĀ in Java up to version 7 has a serious limitation, and that is that it’s not possible to get notified when the result is available. The only thing you can do with a FutureĀ is call get() on it, which will block if...