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 |
---|---|
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) 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 |
---|---|
Future<String> |
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 . |
Future<String> |
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 |
---|---|
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 |
SyncVerticle
Deprecated.
This project will be removed with Quasar being effectively abandoned
|
Modifier and Type | Class and Description |
---|---|
class |
ScriptVerticle
A 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 |
---|---|
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 © 2021 Eclipse. All rights reserved.