public class AbstractVerticle extends AbstractVerticle
| Modifier and Type | Field and Description |
|---|---|
protected Vertx |
vertx |
context| Constructor and Description |
|---|
AbstractVerticle() |
| Modifier and Type | Method and Description |
|---|---|
void |
init(Vertx vertx,
Context context) |
io.reactivex.Completable |
rxStart()
Override to return a
Completable that will complete the deployment of this verticle. |
io.reactivex.Completable |
rxStop()
Override to return a
Completable that will complete the undeployment of this verticle. |
void |
start(Future<Void> startFuture) |
void |
stop(Future<Void> stopFuture) |
config, deploymentID, getVertx, processArgs, start, stopprotected Vertx vertx
public void init(Vertx vertx, Context context)
init in interface Verticleinit in class AbstractVerticlepublic void start(Future<Void> startFuture) throws Exception
start in interface Verticlestart in class AbstractVerticleExceptionpublic io.reactivex.Completable rxStart()
Completable that will complete the deployment of this verticle.
When null is returned, the AbstractVerticle.start() will be called instead.public void stop(Future<Void> stopFuture) throws Exception
stop in interface Verticlestop in class AbstractVerticleExceptionpublic io.reactivex.Completable rxStop()
Completable that will complete the undeployment of this verticle.
When null is returned, the AbstractVerticle.stop() will be called instead.Copyright © 2020 Eclipse. All rights reserved.