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 | |
io.vertx.reactivex.core |
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 |
---|---|
void |
Vertx.deployVerticle(Class<? extends Verticle> verticleClass,
DeploymentOptions options)
Like
Vertx.deployVerticle(Verticle, DeploymentOptions) but Verticle instance is created by invoking the
default constructor of verticleClass . |
void |
Vertx.deployVerticle(Class<? extends Verticle> verticleClass,
DeploymentOptions options,
Handler<AsyncResult<String>> completionHandler)
Like
Vertx.deployVerticle(Verticle, DeploymentOptions, Handler) but Verticle instance is created by
invoking the default constructor of verticleClass . |
void |
Vertx.deployVerticle(Supplier<Verticle> verticleSupplier,
DeploymentOptions options)
Like
Vertx.deployVerticle(Verticle, DeploymentOptions) but Verticle instance is created by invoking the
verticleSupplier . |
void |
Vertx.deployVerticle(Supplier<Verticle> verticleSupplier,
DeploymentOptions options,
Handler<AsyncResult<String>> completionHandler)
Like
Vertx.deployVerticle(Verticle, DeploymentOptions, Handler) but Verticle instance is created by
invoking the verticleSupplier . |
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 | Method and Description |
---|---|
static io.reactivex.Single<String> |
RxHelper.deployVerticle(Vertx vertx,
Verticle verticle)
Deploy a verticle you have created yourself, using an
RxJava vertx instance.
|
static io.reactivex.Single<String> |
RxHelper.deployVerticle(Vertx vertx,
Verticle verticle,
DeploymentOptions options)
Like
RxHelper.deployVerticle(Vertx, Verticle) , but DeploymentOptions are provided to configure the
deployment. |
Copyright © 2018 Eclipse. All rights reserved.