Uses of Interface
io.vertx.core.Deployable
-
Packages that use Deployable Package Description io.vertx.core io.vertx.core.spi -
-
Uses of Deployable in io.vertx.core
Subinterfaces of Deployable in io.vertx.core Modifier and Type Interface Description interfaceVerticleWARNING : this class is not deprecated, however we encourage instead to useVerticleBaseA 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 classAbstractVerticleWARNING : this class is not deprecated, however we encourage instead to useVerticleBaseAn abstract base class that you can extend to write your own Verticle classes.classVerticleBaseAn 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)butDeploymentOptionsare 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)butDeployableinstance is created by invoking the default constructor ofverticleClass.Future<String>Vertx. deployVerticle(Supplier<? extends Deployable> supplier, DeploymentOptions options)LikeVertx.deployVerticle(Deployable, DeploymentOptions)butDeployableinstance 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 voidVerticleFactory. createVerticle2(String verticleName, ClassLoader classLoader, Promise<Callable<? extends Deployable>> promise)Create a verticle instance.
-