Interface HookContext
public interface HookContext
Exposes objects available at different stages of the
VertxApplication launch process.-
Method Summary
Modifier and TypeMethodDescriptionThe deployment identifier, after the verticle has started.The verticle deployment options, which can be modified before Vert.x is started.The name of the verticle to deploy.vertx()The Vert.x instance, after it has started.The Vert.x options, which can be modified before Vert.x is started.
-
Method Details
-
vertxOptions
VertxOptions vertxOptions()The Vert.x options, which can be modified before Vert.x is started. -
vertx
Vertx vertx()The Vert.x instance, after it has started. -
mainVerticle
String mainVerticle()The name of the verticle to deploy.May be
nullif not provided on the command line or configured in the JAR'sMETA-INF/MANIFEST.MFfile. -
deploymentOptions
DeploymentOptions deploymentOptions()The verticle deployment options, which can be modified before Vert.x is started. -
deploymentId
String deploymentId()The deployment identifier, after the verticle has started.
-