Uses of Interface
io.vertx.core.Deployable
Packages that use Deployable
-
Uses of Deployable in io.vertx.core
Subinterfaces of Deployable in io.vertx.coreModifier and TypeInterfaceDescriptioninterfaceWARNING : 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 DeployableModifier and TypeClassDescriptionclassWARNING : this class is not deprecated, however we encourage instead to useVerticleBaseAn abstract base class that you can extend to write your own Verticle classes.classAn abstract base class that you can extend to write your own Verticle classes.Methods in io.vertx.core with parameters of type DeployableModifier and TypeMethodDescriptionVertx.deployVerticle(Deployable verticle) Deploy a verticle instance that you have created yourself.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 DeployableModifier and TypeMethodDescriptionVertx.deployVerticle(Class<? extends Deployable> verticleClass, DeploymentOptions options) LikeVertx.deployVerticle(Deployable, DeploymentOptions)butDeployableinstance is created by invoking the default constructor ofverticleClass.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 DeployableModifier and TypeMethodDescriptiondefault voidVerticleFactory.createVerticle2(String verticleName, ClassLoader classLoader, Promise<Callable<? extends Deployable>> promise) Create a verticle instance.