| Modifier and Type | Class and Description | 
|---|---|
| class  | AbstractVerticleAn abstract base class that you can extend to write your own Verticle classes. | 
| Modifier and Type | Method and Description | 
|---|---|
| default Future<String> | Vertx. deployVerticle(Verticle verticle)Deploy a verticle instance that you have created yourself. | 
| Future<String> | Vertx. deployVerticle(Verticle verticle,
              DeploymentOptions options)Like  Vertx.deployVerticle(Verticle)butDeploymentOptionsare provided to configure the
 deployment. | 
| void | Vertx. deployVerticle(Verticle verticle,
              DeploymentOptions options,
              Handler<AsyncResult<String>> completionHandler)Like  Vertx.deployVerticle(Verticle, Handler)butDeploymentOptionsare 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 | 
|---|---|
| Future<String> | Vertx. deployVerticle(Class<? extends Verticle> verticleClass,
              DeploymentOptions options)Like  Vertx.deployVerticle(Verticle, DeploymentOptions)butVerticleinstance is created by invoking the
 default constructor ofverticleClass. | 
| void | Vertx. deployVerticle(Class<? extends Verticle> verticleClass,
              DeploymentOptions options,
              Handler<AsyncResult<String>> completionHandler)Like  Vertx.deployVerticle(Verticle, DeploymentOptions, Handler)butVerticleinstance is created by
 invoking the default constructor ofverticleClass. | 
| Future<String> | Vertx. deployVerticle(java.util.function.Supplier<Verticle> verticleSupplier,
              DeploymentOptions options)Like  Vertx.deployVerticle(Verticle, DeploymentOptions)butVerticleinstance is created by invoking theverticleSupplier. | 
| void | Vertx. deployVerticle(java.util.function.Supplier<Verticle> verticleSupplier,
              DeploymentOptions options,
              Handler<AsyncResult<String>> completionHandler)Like  Vertx.deployVerticle(Verticle, DeploymentOptions, Handler)butVerticleinstance is created by
 invoking theverticleSupplier. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | VerticleFactory. createVerticle(String verticleName,
              ClassLoader classLoader,
              Promise<Callable<Verticle>> promise)Create a verticle instance. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | HttpServiceFactory. createVerticle(String verticleName,
              DeploymentOptions deploymentOptions,
              ClassLoader classLoader,
              Promise<Callable<Verticle>> promise) | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | ShellVerticle | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | SyncVerticleDeprecated. 
 This project will be removed with Quasar being effectively abandoned | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | ScriptVerticleA Vert.x native verticle wrapping a Groovy script, the script will be executed when the Verticle starts. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | GroovyVerticleFactory. createVerticle(String verticleName,
              ClassLoader classLoader,
              Promise<Callable<Verticle>> promise) | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | MavenVerticleFactory. createVerticle(String verticleName,
              DeploymentOptions deploymentOptions,
              ClassLoader classLoader,
              Promise<Callable<Verticle>> promise) | 
| Modifier and Type | Method and Description | 
|---|---|
| Single<String> | Vertx. deployVerticle(Verticle verticle)Like  Vertx.deployVerticle(java.lang.String)but the completionHandler will be notified when the deployment is complete. | 
| Single<String> | Vertx. deployVerticle(Verticle verticle,
              DeploymentOptions options)Like  Vertx.deployVerticle(java.lang.String)butDeploymentOptionsare provided to configure the
 deployment. | 
| 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), butDeploymentOptionsare 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)butDeploymentOptionsare provided to configure the
 deployment. | 
| Modifier and Type | Method and Description | 
|---|---|
| Single<String> | Vertx. deployVerticle(java.util.function.Supplier<Verticle> verticleSupplier,
              DeploymentOptions options)Like  Vertx.deployVerticle(java.lang.String)butVerticleinstance is created by
 invoking theverticleSupplier. | 
| Single<String> | Vertx. rxDeployVerticle(java.util.function.Supplier<Verticle> verticleSupplier,
                DeploymentOptions options)Like  Vertx.deployVerticle(java.lang.String)butVerticleinstance is created by
 invoking theverticleSupplier. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | ServiceVerticleFactory. createVerticle(String verticleName,
              ClassLoader classLoader,
              Promise<Callable<Verticle>> promise) | 
| protected void | ServiceVerticleFactory. createVerticle(String verticleName,
              DeploymentOptions deploymentOptions,
              ClassLoader classLoader,
              Promise<Callable<Verticle>> promise) | 
Copyright © 2023 Eclipse. All rights reserved.