Vertx EventBus Reply a 'Specific' Message
问题 We have a case as below: The concern is that, the Coordinator sends out a message from a method context and gets the reponse from another: private void forwardToVWClient(Message msg) { vertx.eventBus().send(RESTClient.ADDRESS, msg.body(), deliveryOptions, res -> { if (res.succeeded()) { log.info("forwardToVWClient. VW got result : success."); // do not reply ok until we get an OK from the Listener verticle } else { log.error("forwardToVWClient VW got result : failure."); msg.fail(500, res