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(java.util.function.Supplier<Verticle> verticleSupplier,
DeploymentOptions options)
Like
Vertx.deployVerticle(Verticle, DeploymentOptions) but Verticle instance is created by invoking the
verticleSupplier . |
void |
Vertx.deployVerticle(java.util.function.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 |
---|---|
default void |
VertxMetrics.verticleDeployed(Verticle verticle)
Called when a verticle is deployed in Vert.x .
|
default void |
VertxMetrics.verticleUndeployed(Verticle verticle)
Called when a verticle is undeployed in Vert.x .
|
Modifier and Type | Class and Description |
---|---|
class |
ConsulServiceVerticle |
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 |
MongoServiceVerticle
A verticle which starts a MongoDB client and registers it to listen on 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 |
ScriptVerticle |
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(java.lang.String) but DeploymentOptions are provided to configure the
deployment. |
void |
Vertx.deployVerticle(Verticle verticle,
DeploymentOptions options,
Handler<AsyncResult<String>> completionHandler)
Like
Vertx.deployVerticle(java.lang.String) but DeploymentOptions are provided to configure the
deployment. |
void |
Vertx.deployVerticle(Verticle verticle,
Handler<AsyncResult<String>> completionHandler)
Like
Vertx.deployVerticle(java.lang.String) but the completionHandler will be notified when the deployment is complete. |
static Single<String> |
RxHelper.deployVerticle(Vertx vertx,
Verticle verticle)
Deploy a verticle you have created yourself, using an
RxJava vertx instance.
|
static Single<String> |
RxHelper.deployVerticle(Vertx vertx,
Verticle verticle,
DeploymentOptions options)
Like
RxHelper.deployVerticle(Vertx, Verticle) , but DeploymentOptions are provided to configure the
deployment. |
Single<String> |
Vertx.rxDeployVerticle(Verticle verticle)
Like
Vertx.deployVerticle(java.lang.String) but the completionHandler will be notified when the deployment is complete. |
Single<String> |
Vertx.rxDeployVerticle(Verticle verticle,
DeploymentOptions options)
Like
Vertx.deployVerticle(java.lang.String) but DeploymentOptions are provided to configure the
deployment. |
Modifier and Type | Method and Description |
---|---|
void |
Vertx.deployVerticle(java.util.function.Supplier<Verticle> verticleSupplier,
DeploymentOptions options)
Like
Vertx.deployVerticle(java.lang.String) but Verticle instance is created by invoking the
verticleSupplier . |
void |
Vertx.deployVerticle(java.util.function.Supplier<Verticle> verticleSupplier,
DeploymentOptions options,
Handler<AsyncResult<String>> completionHandler)
Like
Vertx.deployVerticle(java.lang.String) but Verticle instance is created by
invoking the verticleSupplier . |
Single<String> |
Vertx.rxDeployVerticle(java.util.function.Supplier<Verticle> verticleSupplier,
DeploymentOptions options)
Like
Vertx.deployVerticle(java.lang.String) but Verticle instance is created by
invoking the verticleSupplier . |
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(java.lang.String) but DeploymentOptions are provided to configure the
deployment. |
void |
Vertx.deployVerticle(Verticle verticle,
DeploymentOptions options,
Handler<AsyncResult<String>> completionHandler)
Like
Vertx.deployVerticle(java.lang.String) but DeploymentOptions are provided to configure the
deployment. |
void |
Vertx.deployVerticle(Verticle verticle,
Handler<AsyncResult<String>> completionHandler)
Like
Vertx.deployVerticle(java.lang.String) but the completionHandler will be notified when the deployment is complete. |
static Observable<String> |
RxHelper.deployVerticle(Vertx vertx,
Verticle verticle)
Deploy a verticle you have created yourself, using an
RxJava vertx instance.
|
static Observable<String> |
RxHelper.deployVerticle(Vertx vertx,
Verticle verticle,
DeploymentOptions options)
Like
RxHelper.deployVerticle(Vertx, Verticle) , but DeploymentOptions are provided to configure the
deployment. |
Observable<String> |
Vertx.deployVerticleObservable(Verticle verticle)
Deprecated.
use
Vertx.rxDeployVerticle(java.lang.String) instead |
Observable<String> |
Vertx.deployVerticleObservable(Verticle verticle,
DeploymentOptions options)
Deprecated.
use
Vertx.rxDeployVerticle(java.lang.String) instead |
Single<String> |
Vertx.rxDeployVerticle(Verticle verticle)
Like
Vertx.deployVerticle(java.lang.String) but the completionHandler will be notified when the deployment is complete. |
Single<String> |
Vertx.rxDeployVerticle(Verticle verticle,
DeploymentOptions options)
Like
Vertx.deployVerticle(java.lang.String) but DeploymentOptions are provided to configure the
deployment. |
Modifier and Type | Method and Description |
---|---|
Verticle |
ServiceVerticleFactory.createVerticle(String verticleName,
ClassLoader classLoader) |
Copyright © 2023 Eclipse. All rights reserved.