Uses of Interface
io.vertx.core.eventbus.Message
Packages that use Message
-
Uses of Message in io.vertx.core.eventbus
Methods in io.vertx.core.eventbus that return MessageMethods in io.vertx.core.eventbus that return types with arguments of type MessageModifier and TypeMethodDescriptionMessage.replyAndRequest(Object message) Reply to this message, specifying areplyHandlerfor the reply - i.e.Message.replyAndRequest(Object message, DeliveryOptions options) LikereplyAndRequest(Object)but specifyingoptionsthat can be used to configure the delivery.Sends a message and specify areplyHandlerthat will be called if the recipient subsequently replies to the message.EventBus.request(String address, Object message, DeliveryOptions options) LikeEventBus.request(String, Object)but specifyingoptionsthat can be used to configure the delivery.Method parameters in io.vertx.core.eventbus with type arguments of type MessageModifier and TypeMethodDescription<T> MessageConsumer<T> EventBus.consumer(MessageConsumerOptions options, Handler<Message<T>> handler) Create a consumer and register it against the specified options address.<T> MessageConsumer<T> Create a consumer and register it against the specified address.<T> MessageConsumer<T> EventBus.localConsumer(String address, Handler<Message<T>> handler) LikeEventBus.consumer(String, Handler)but the address won't be propagated across the cluster. -
Uses of Message in io.vertx.core.spi.metrics
Methods in io.vertx.core.spi.metrics with parameters of type MessageModifier and TypeMethodDescriptiondefault voidEventBusMetrics.discardMessage(H handler, boolean local, Message<?> msg) Discard a message.