suspend fun Vertx.deployVerticleAwait(name: String): String
Like io.vertx.core.Vertx but the completionHandler will be notified when the deployment is complete.
suspend fun Vertx.deployVerticleAwait(name: String, options: DeploymentOptions): String
Like io.vertx.core.Vertx but io.vertx.core.DeploymentOptions are provided to configure the deployment.
options - the deployment options.
suspend fun Vertx.deployVerticleAwait(verticle: Verticle): String
Like io.vertx.core.Vertx but the completionHandler will be notified when the deployment is complete.
verticle - the verticle instance to deploy
suspend fun Vertx.deployVerticleAwait(verticle: Verticle, options: DeploymentOptions): String
Like io.vertx.core.Vertx but io.vertx.core.DeploymentOptions are provided to configure the deployment.
verticle - the verticle instance to deploy
options - the deployment options.
suspend fun Vertx.deployVerticleAwait(verticleSupplier: Supplier<Verticle>, options: DeploymentOptions): String
Like io.vertx.core.Vertx but io.vertx.core.Verticle instance is created by invoking the verticleSupplier.