When we need to perform several "slow" remote calls we have to main approaches to speed up:
- To use Parallel Streams
- To use CompletableFuture
This example shows how the CompletableFuture API might be considered much more flexible than Parallel Stream.