Uses of Interface
io.vertx.core.Promise
-
Packages that use Promise Package Description io.vertx.core io.vertx.core.spi -
-
Uses of Promise in io.vertx.core
Methods in io.vertx.core that return Promise Modifier and Type Method Description static <T> Promise<T>Promise. promise()Create a promise that hasn't completed yetMethods in io.vertx.core with parameters of type Promise Modifier and Type Method Description voidAbstractVerticle. start(Promise<Void> startPromise)Start the verticle.voidVerticle. start(Promise<Void> startPromise)Start the verticle instance.voidAbstractVerticle. stop(Promise<Void> stopPromise)Stop the verticle.voidVerticle. stop(Promise<Void> stopPromise)Stop the verticle instance.Method parameters in io.vertx.core with type arguments of type Promise Modifier and Type Method Description static <T> Future<T>Future. future(Handler<Promise<T>> handler)Create a promise and pass it to thehandler, and then returns this future's promise. -
Uses of Promise in io.vertx.core.spi
Methods in io.vertx.core.spi with parameters of type Promise Modifier and Type Method Description default voidVerticleFactory. createVerticle(String verticleName, ClassLoader classLoader, Promise<Callable<Verticle>> promise)Deprecated.deprecated, instead implementVerticleFactory.createVerticle2(String, ClassLoader, Promise)default voidVerticleFactory. createVerticle2(String verticleName, ClassLoader classLoader, Promise<Callable<? extends Deployable>> promise)Create a verticle instance.
-