Skip to content

Instantly share code, notes, and snippets.

@teivah
Created May 30, 2018 13:27
Show Gist options
  • Save teivah/77c55f2797d13d065d5284c519857225 to your computer and use it in GitHub Desktop.
Save teivah/77c55f2797d13d065d5284c519857225 to your computer and use it in GitHub Desktop.
vertx.executeBlocking(future -> {
//Blocking part
future.complete();
} , res -> {
if (res.succeeded()) {
//Success
} else {
//Failure
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment