Skip to content

Instantly share code, notes, and snippets.

@babjo
Created November 26, 2017 15:14
Show Gist options
  • Save babjo/1bac08aa98bbf007c1b9e3b90ba5191e to your computer and use it in GitHub Desktop.
Save babjo/1bac08aa98bbf007c1b9e3b90ba5191e to your computer and use it in GitHub Desktop.
CompletableFuture<String> completableFuture
= CompletableFuture.supplyAsync(() -> "Hello");
CompletableFuture<Void> future = completableFuture
.thenRun(() -> System.out.println("Computation finished."));
future.get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment