Skip to content

Instantly share code, notes, and snippets.

@babjo
Created November 26, 2017 06:52
Show Gist options
  • Save babjo/fb62b7eb7b3d839d4b6dbb2a0abd2bd0 to your computer and use it in GitHub Desktop.
Save babjo/fb62b7eb7b3d839d4b6dbb2a0abd2bd0 to your computer and use it in GitHub Desktop.
CompletableFuture<String> future
= CompletableFuture.supplyAsync(() -> "Hello");
// ...
assertEquals("Hello", future.get());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment