Skip to content

Instantly share code, notes, and snippets.

@s1monw1
Created October 27, 2017 21:30
Show Gist options
  • Save s1monw1/c415d3bd1e3d4f827602fca3b440a0b3 to your computer and use it in GitHub Desktop.
Save s1monw1/c415d3bd1e3d4f827602fca3b440a0b3 to your computer and use it in GitHub Desktop.
fun deployVerticles() {
fun deploy(verticleClassName: String) {
vertx.deployVerticle(verticleClassName, opt, { deploy ->
LOG.info("$verticleClassName has been deployed? ${deploy.succeeded()}")
})
}
deploy("ServiceVerticle")
deploy("WebVerticle")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment