Uses of Interface
io.vertx.core.Deployable
-
Packages that use Deployable Package Description io.vertx.core io.vertx.core.spi io.vertx.ext.shell io.vertx.lang.groovy io.vertx.reactivex.core io.vertx.rxjava3.core -
-
Uses of Deployable in io.vertx.core
Subinterfaces of Deployable in io.vertx.core Modifier and Type Interface Description interface
Verticle
WARNING : this class is not deprecated, however we encourage instead to useVerticleBase
A verticle is a piece of code that can be deployed by Vert.x.Classes in io.vertx.core that implement Deployable Modifier and Type Class Description class
AbstractVerticle
WARNING : this class is not deprecated, however we encourage instead to useVerticleBase
An abstract base class that you can extend to write your own Verticle classes.class
VerticleBase
An abstract base class that you can extend to write your own Verticle classes.Methods in io.vertx.core with parameters of type Deployable Modifier and Type Method Description default Future<String>
Vertx. deployVerticle(Deployable verticle)
Deploy a verticle instance that you have created yourself.default Future<String>
Vertx. deployVerticle(Deployable verticle, DeploymentOptions options)
LikeVertx.deployVerticle(Deployable)
butDeploymentOptions
are provided to configure the deployment.Method parameters in io.vertx.core with type arguments of type Deployable Modifier and Type Method Description Future<String>
Vertx. deployVerticle(Class<? extends Deployable> verticleClass, DeploymentOptions options)
LikeVertx.deployVerticle(Deployable, DeploymentOptions)
butDeployable
instance is created by invoking the default constructor ofverticleClass
.Future<String>
Vertx. deployVerticle(java.util.function.Supplier<? extends Deployable> supplier, DeploymentOptions options)
LikeVertx.deployVerticle(Deployable, DeploymentOptions)
butDeployable
instance is created by invoking theverticleSupplier
. -
Uses of Deployable in io.vertx.core.spi
Method parameters in io.vertx.core.spi with type arguments of type Deployable Modifier and Type Method Description default void
VerticleFactory. createVerticle2(String verticleName, ClassLoader classLoader, Promise<Callable<? extends Deployable>> promise)
Create a verticle instance. -
Uses of Deployable in io.vertx.ext.shell
Classes in io.vertx.ext.shell that implement Deployable Modifier and Type Class Description class
ShellVerticle
-
Uses of Deployable in io.vertx.lang.groovy
Classes in io.vertx.lang.groovy that implement Deployable Modifier and Type Class Description class
ScriptVerticle
A Vert.x native verticle wrapping a Groovy script, the script will be executed when the Verticle starts. -
Uses of Deployable in io.vertx.reactivex.core
Classes in io.vertx.reactivex.core that implement Deployable Modifier and Type Class Description class
AbstractVerticle
Methods in io.vertx.reactivex.core with parameters of type Deployable Modifier and Type Method Description Future<String>
Vertx. deployVerticle(Deployable verticle)
Deploy a verticle instance that you have created yourself.Future<String>
Vertx. deployVerticle(Deployable verticle, DeploymentOptions options)
LikeVertx.deployVerticle(java.lang.String)
butDeploymentOptions
are provided to configure the deployment.Single<String>
Vertx. rxDeployVerticle(Deployable verticle)
Deploy a verticle instance that you have created yourself.Single<String>
Vertx. rxDeployVerticle(Deployable verticle, DeploymentOptions options)
LikeVertx.deployVerticle(java.lang.String)
butDeploymentOptions
are provided to configure the deployment. -
Uses of Deployable in io.vertx.rxjava3.core
Classes in io.vertx.rxjava3.core that implement Deployable Modifier and Type Class Description class
AbstractVerticle
Methods in io.vertx.rxjava3.core with parameters of type Deployable Modifier and Type Method Description Single<String>
Vertx. deployVerticle(Deployable verticle)
Deploy a verticle instance that you have created yourself.Single<String>
Vertx. deployVerticle(Deployable verticle, DeploymentOptions options)
LikeVertx.deployVerticle(java.lang.String)
butDeploymentOptions
are provided to configure the deployment.Single<String>
Vertx. rxDeployVerticle(Deployable verticle)
Deploy a verticle instance that you have created yourself.Single<String>
Vertx. rxDeployVerticle(Deployable verticle, DeploymentOptions options)
LikeVertx.deployVerticle(java.lang.String)
butDeploymentOptions
are provided to configure the deployment.
-