Skip to content

Instantly share code, notes, and snippets.

@AlexeySoshin
Created February 10, 2019 16:32
Show Gist options
  • Save AlexeySoshin/4d9db6c02074290ea70288acf40f20f7 to your computer and use it in GitHub Desktop.
Save AlexeySoshin/4d9db6c02074290ea70288acf40f20f7 to your computer and use it in GitHub Desktop.
private void restart(HttpClient client, int delay) {
client.close();
vertx.setTimer(TimeUnit.SECONDS.toMillis(delay), (__) -> {
startClient(vertx);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment