Package | Description |
---|---|
io.vertx.core | |
io.vertx.core.spi | |
io.vertx.core.spi.metrics | |
io.vertx.ext.mail | |
io.vertx.ext.shell | |
io.vertx.ext.sync | |
io.vertx.lang.ruby | |
io.vertx.service |
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 .
|
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
|
Modifier and Type | Class and Description |
---|---|
class |
ShellVerticle |
Modifier and Type | Class and Description |
---|---|
class |
SyncVerticle
A `Verticle` which runs its `start` and `stop` methods using fibers.
|
Modifier and Type | Class and Description |
---|---|
class |
JRubyVerticle |
Modifier and Type | Method and Description |
---|---|
Verticle |
JRubyVerticleFactory.createVerticle(String verticleName,
ClassLoader classLoader) |
Modifier and Type | Method and Description |
---|---|
Verticle |
ServiceVerticleFactory.createVerticle(String verticleName,
ClassLoader classLoader) |
Copyright © 2016. All rights reserved.