Skip to content

Instantly share code, notes, and snippets.

@babjo
Created November 27, 2017 15:12
Show Gist options
  • Save babjo/bdacd88134a1979fe3107759418a244b to your computer and use it in GitHub Desktop.
Save babjo/bdacd88134a1979fe3107759418a244b to your computer and use it in GitHub Desktop.
String combined = Stream.of(future1, future2, future3)
.map(CompletableFuture::join)
.collect(Collectors.joining(" "));
assertEquals("Hello Beautiful World", combined);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment