Class ShellVerticle

    • Constructor Detail

      • ShellVerticle

        public ShellVerticle()
    • Method Detail

      • 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