``` CompletableFuture<String> cf = Compl...
# vertx
j
Copy code
CompletableFuture<String> cf = CompletableFuture.<String>supplyAsync(() -> "hello");

    cf.thenAccept(s -> {
      new Exception().printStackTrace();

    });