Advertisement
Guest User

Untitled

a guest
Jun 5th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1.         vertx.undeploy(vertx.getOrCreateContext().deploymentID(), undeployResult -> {
  2.             if(undeployResult.succeeded()) {
  3.                 log("Successfully undeployed!");
  4.             }
  5.             else {
  6.                 log("Unsuccessfull undeploying! " + undeployResult.cause());
  7.                 undeployResult.cause().printStackTrace();
  8.             }
  9.         });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement