Skip to content

Instantly share code, notes, and snippets.

@alfredrichards
Created November 18, 2020 12:04
Show Gist options
  • Save alfredrichards/2435c2b36b430dd48750dcc9a76a3a64 to your computer and use it in GitHub Desktop.
Save alfredrichards/2435c2b36b430dd48750dcc9a76a3a64 to your computer and use it in GitHub Desktop.
Chaining callbacks to CompletableFuture in Java
CompletableFuture.supplyAsync(supplier)
.thenApply(function)
.thenAccept(consumer)
.thenRun(runnableTask);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment