What is the best way to construct a completed future in Java? I have implemented my own CompletedFuture below, but was hoping something like this that already exist
CompletedFuture
Guava defines Futures.immediateFuture(value), which does the job.