Skip to content

Instantly share code, notes, and snippets.

@john-nash-rs
Created April 26, 2020 13:22
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save john-nash-rs/f559b045e821898e40dc2d0a44de1186 to your computer and use it in GitHub Desktop.
private static void demoCompleteExceptionally() throws InterruptedException, ExecutionException {
CompletableFuture<String> completableFutureFirst = CompletableFuture.supplyAsync(() -> {
System.out.println("Task Running inside completable Future");
try {
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
return "oops";
});
completableFutureFirst.completeExceptionally(new RuntimeException("Task in CompletableFuture Failed"));
String result = completableFutureFirst.get();
System.out.println("Result :: "+result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment