Package | Description |
---|---|
io.vertx.core | |
io.vertx.core.spi | |
io.vertx.core.spi.metrics | |
io.vertx.ext.auth | |
io.vertx.ext.auth.shiro | |
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
|
void |
VertxMetrics.verticleUndeployed(Verticle verticle)
Called when a verticle is undeployed in Vert.x
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractAuthServiceVerticle
Base class for auth service verticles
|
class |
AuthServiceVerticle
A verticle which starts an Auth service instance
|
Modifier and Type | Class and Description |
---|---|
class |
ShiroAuthServiceVerticle
A verticle which starts an Auth service instance
|
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.