dierre
06/16/2016, 11:48 AMCompletableFuture.supplyAsync(Supplier<List<Quote>> { quoteRepository.getAll(identifier) }, es)
but not this CompletableFuture.supplyAsync({ quoteRepository.getAll(identifier) }, es)
and this is one is ok CompletableFuture.supplyAsync({ quoteRepository.getAll(identifier) })
?