vertx / io.vertx.reactivex.core / Vertx / rxDeployVerticle

rxDeployVerticle

open fun rxDeployVerticle(name: String): Single<String>

Like io.vertx.reactivex.core.Vertx#deployVerticle but the completionHandler will be notified when the deployment is complete.

If the deployment is successful the result will contain a String representing the unique deployment ID of the deployment.

This deployment ID can subsequently be used to undeploy the verticle.

Parameters

name - The identifier

Return

open fun rxDeployVerticle(name: String, options: DeploymentOptions): Single<String>

Like io.vertx.reactivex.core.Vertx#deployVerticle but io.vertx.core.DeploymentOptions are provided to configure the deployment.

Parameters

name - the name

options - the deployment options.

Return