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.
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.
options - the deployment options.
Return