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 void
Simply callsstart(String...)
.static void
start(io.vertx.core.Verticle... verticles)
Deploys the givenVerticles
.
If Vert.x fails to deploy aVerticle
, it will retry after 5 secs.static void
Deploys 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 theVerticles
which 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 theVerticles
which 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
-