Skip to content

Instantly share code, notes, and snippets.

@babjo
Created November 26, 2017 03:37
Show Gist options
  • Save babjo/638fe001d43301078b4dfe94c1a1faa5 to your computer and use it in GitHub Desktop.
Save babjo/638fe001d43301078b4dfe94c1a1faa5 to your computer and use it in GitHub Desktop.
Future<String> completableFuture =
CompletableFuture.completedFuture("Hello");
// ...
String result = completableFuture.get();
assertEquals("Hello", result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment