Class ShellVerticle

java.lang.Object
io.vertx.core.AbstractVerticle
io.vertx.ext.shell.ShellVerticle
All Implemented Interfaces:
Deployable, Verticle

public class ShellVerticle extends AbstractVerticle
Author:
Julien Viet
  • Constructor Details

    • ShellVerticle

      public ShellVerticle()
  • Method Details

    • start

      public void start(Promise<Void> startFuture) throws Exception
      Description copied from class: AbstractVerticle
      Start the verticle.

      This is called by Vert.x when the verticle instance is deployed. Don't call it yourself.

      If your verticle does things in its startup which take some time then you can override this method and call the startFuture some time later when start up is complete.

      Specified by:
      start in interface Verticle
      Overrides:
      start in class AbstractVerticle
      Parameters:
      startFuture - a promise which should be called when verticle start-up is complete.
      Throws:
      Exception