Skip to content

Instantly share code, notes, and snippets.

@teivah
Created May 30, 2018 13:34
Show Gist options
  • Save teivah/2f97fc954860dc3da1ca66f765c4d759 to your computer and use it in GitHub Desktop.
Save teivah/2f97fc954860dc3da1ca66f765c4d759 to your computer and use it in GitHub Desktop.
future.setHandler(res -> {
if (res.succeeded()) {
// If the future succeeded
Object o = res.result();
// Do something...
} else {
// If the future failed
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment