Skip to content

Instantly share code, notes, and snippets.

@teivah
Created May 30, 2018 13:38
Show Gist options
  • Save teivah/7ab5deb620ada5e4a144ec531f6df811 to your computer and use it in GitHub Desktop.
Save teivah/7ab5deb620ada5e4a144ec531f6df811 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