jponge/vertx-boot

Add Verticle Deploy Order

lizhongyue248 opened this issue · 0 comments

I have two Verticle

  • WebVerticle
  • DatabaseVerticle

Somtimes, the DatabaseVerticle will deploy failed. Such as the database dose not set up. but the WebVerticle already deployed.

I want to the WebVerticle has be deployed after the DatabaseVerticle deploy succeed.

Another example.

I have many Verticle

  • ConfigVerticle
  • WebVerticle
  • SocketVerticle
  • ......and other Verticle

WebVerticle and other Verticle configurations are derived from ConfigVerticle. So,
I must ensure the successful deployment of ConfigVerticle before I can deploy other Verticle.