suspend fun Vertx.closeAwait(): Unit
Like io.vertx.core.Vertx but the completionHandler will be called when the close is complete |
|
suspend fun Vertx.deployVerticleAwait(name: String): Stringsuspend fun Vertx.deployVerticleAwait(verticle: Verticle): 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): Stringsuspend fun Vertx.deployVerticleAwait(verticle: Verticle, options: DeploymentOptions): String
Like io.vertx.core.Vertx but io.vertx.core.DeploymentOptions are provided to configure the deployment. 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. |
|
suspend fun <T> Vertx.executeBlockingAwait(blockingCodeHandler: Handler<Future<T>>, ordered: Boolean): T?
Safely execute some blocking code. suspend fun <T> Vertx.executeBlockingAwait(blockingCodeHandler: Handler<Future<T>>): T?
Like io.vertx.core.Vertx called with ordered = true. |
|
suspend fun Vertx.undeployAwait(deploymentID: String): Unit
Like io.vertx.core.Vertxio.vertx.core.Vertx but the completionHandler will be notified when the undeployment is complete. |