How can I send RoutingContext object from routing verticle to some other verticle using vertx.eventBus().send() method?
问题 From my routing verticle which has route URL, I want to send RoutingContext object to another verticle. I believe we can only use vertx.eventBus().send() to send message from routing verticle to some other action verticle. Can I send RoutingContext object as a message? In router verticle I am doing vertx.eventBus().<RoutingContext>send("address", routingContext) and in consumer verticle I am doing vertx.eventBus().<RoutingContext>consumer("address").handler(message -> { RoutingContext