Package | Description |
---|---|
io.vertx.core |
= Vert.x Core Manual
:toc: left
At the heart of Vert.x is a set of Java APIs that we call *Vert.x Core*
https://github.com/eclipse/vert.x[Repository].
|
io.vertx.core.spi | |
io.vertx.core.spi.metrics |
Modifier and Type | Class and Description |
---|---|
class |
AbstractVerticle
An abstract base class that you can extend to write your own Verticle classes.
|
Modifier and Type | Method and Description |
---|---|
void |
Vertx.deployVerticle(Verticle verticle)
Deploy a verticle instance that you have created yourself.
|
void |
Vertx.deployVerticle(Verticle verticle,
DeploymentOptions options)
Like
Vertx.deployVerticle(Verticle) but DeploymentOptions are provided to configure the
deployment. |
void |
Vertx.deployVerticle(Verticle verticle,
DeploymentOptions options,
Handler<AsyncResult<String>> completionHandler)
Like
Vertx.deployVerticle(Verticle, Handler) but DeploymentOptions are provided to configure the
deployment. |
void |
Vertx.deployVerticle(Verticle verticle,
Handler<AsyncResult<String>> completionHandler)
Like
Vertx.deployVerticle(Verticle) but the completionHandler will be notified when the deployment is complete. |
Modifier and Type | Method and Description |
---|---|
Verticle |
VerticleFactory.createVerticle(String verticleName,
ClassLoader classLoader)
Create a verticle instance.
|
Modifier and Type | Method and Description |
---|---|
void |
VertxMetrics.verticleDeployed(Verticle verticle)
Called when a verticle is deployed in Vert.x .
|
void |
VertxMetrics.verticleUndeployed(Verticle verticle)
Called when a verticle is undeployed in Vert.x .
|
Copyright © 2017. All rights reserved.