Created
June 30, 2020 21:24
-
-
Save theboreddev/0cd1e1b5292a095ac5487b2403cf5171 to your computer and use it in GitHub Desktop.
complete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CompletableFuture<String> completableFuture = new CompletableFuture<>(); | |
| completableFuture | |
| .thenAccept(System.out::println); | |
| completableFuture.complete("I have completed!"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment