Thanks <@U6P03BM0W> I saw it, I migrate to Corout...
# coroutines
f
Thanks @dave08 I saw it, I migrate to CoroutineVerticle. I’m now inside my Verticle runner:
Copy code
launch(vertx.dispatcher()) {
                ConfigManager.init(vertx)
                awaitResult<String> { handler -> vertx.deployVerticle(ConfigurationVerticle(), handler) }
                awaitResult<String> { handler -> vertx.deployVerticle(RunnerVerticle(), handler) }
                awaitResult<String> { handler -> vertx.deployVerticle(FBRestVerticle(), handler) }
            }.start()`
Is it the good way to deploy CoroutineVerticles?