CompletableFuture: The Promises of Java

Date
Feb 22, 2018
At the core of asynchronous programming facility in Java is CompletableFuture. It provides two channels, one for data and one for error handling. Using a nice series of transformations we can work with data or deal with errors quite elegantly. This presentation learns you about the key problem CompletableFuture solves, how and when to use it, and also take a look at some problems that can be easily solved using it.