Package de.wuespace.telestion.launcher
Class Launcher
java.lang.Object
de.wuespace.telestion.launcher.Launcher
A generic org.telestion.launcher.launcher class which deploys
Verticles.- See Also:
Verticle
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidSimply callsstart(String...).static voidstart(io.vertx.core.Verticle... verticles)Deploys the givenVerticles.
If Vert.x fails to deploy aVerticle, it will retry after 5 secs.static voidDeploys the givenVerticles.
If Vert.x fails to deploy aVerticle, it will retry after 5 secs.
-
Constructor Details
-
Launcher
public Launcher()
-
-
Method Details
-
main
Simply callsstart(String...).- Parameters:
args- the class names of theVerticleswhich should be deployed
-
start
Deploys the givenVerticles.
If Vert.x fails to deploy aVerticle, it will retry after 5 secs.- Parameters:
verticleNames- the class names of theVerticleswhich should be deployed
-
start
public static void start(io.vertx.core.Verticle... verticles)Deploys the givenVerticles.
If Vert.x fails to deploy aVerticle, it will retry after 5 secs.- Parameters:
verticles- the verticles to be deployed
-