Package | Description |
---|---|
io.vertx.core | |
io.vertx.core.spi | |
io.vertx.core.spi.metrics | |
io.vertx.ext.mail |
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) |
Modifier and Type | Method and Description |
---|---|
void |
VertxMetrics.verticleDeployed(Verticle verticle)
Called when a verticle is deployed in Vert.x .
This method is invoked with
Context and thread of the deployed verticle and therefore
might be different on every invocation. |
void |
VertxMetrics.verticleUndeployed(Verticle verticle)
Called when a verticle is undeployed in Vert.x .
This method is invoked with
Context and thread of the deployed verticle and therefore
might be different on every invocation, however these are the same than the VertxMetrics.verticleDeployed(io.vertx.core.Verticle) invocation. |
Modifier and Type | Class and Description |
---|---|
class |
MailServiceVerticle
event bus verticle that supports sending mails via a MailService instance running on
another machine via the event bus
|
Copyright © 2015. All Rights Reserved.