Uses of Class
io.vertx.mutiny.core.eventbus.EventBus
-
Packages that use EventBus Package Description io.vertx.mutiny.core io.vertx.mutiny.core.eventbus io.vertx.mutiny.ext.web.api.service -
-
Uses of EventBus in io.vertx.mutiny.core
Methods in io.vertx.mutiny.core that return EventBus Modifier and Type Method Description EventBus
Vertx. eventBus()
-
Uses of EventBus in io.vertx.mutiny.core.eventbus
Fields in io.vertx.mutiny.core.eventbus with type parameters of type EventBus Modifier and Type Field Description static TypeArg<EventBus>
EventBus. __TYPE_ARG
Methods in io.vertx.mutiny.core.eventbus that return EventBus Modifier and Type Method Description <T> EventBus
EventBus. addInboundInterceptor(Consumer<DeliveryContext<T>> interceptor)
<T> EventBus
EventBus. addOutboundInterceptor(Consumer<DeliveryContext<T>> interceptor)
static EventBus
EventBus. newInstance(io.vertx.core.eventbus.EventBus arg)
EventBus
EventBus. publish(String address, Object message)
EventBus
EventBus. publish(String address, Object message, io.vertx.core.eventbus.DeliveryOptions options)
EventBus
EventBus. registerCodec(io.vertx.core.eventbus.MessageCodec codec)
<T> EventBus
EventBus. removeInboundInterceptor(Consumer<DeliveryContext<T>> interceptor)
<T> EventBus
EventBus. removeOutboundInterceptor(Consumer<DeliveryContext<T>> interceptor)
<T> EventBus
EventBus. requestAndForget(String address, Object message)
Variant ofrequest(String,Object)
that ignores the result of the operation.<T> EventBus
EventBus. requestAndForget(String address, Object message, io.vertx.core.eventbus.DeliveryOptions options)
Variant ofrequest(String,Object,DeliveryOptions)
that ignores the result of the operation.EventBus
EventBus. send(String address, Object message)
EventBus
EventBus. send(String address, Object message, io.vertx.core.eventbus.DeliveryOptions options)
EventBus
EventBus. unregisterCodec(String name)
-
Uses of EventBus in io.vertx.mutiny.ext.web.api.service
Methods in io.vertx.mutiny.ext.web.api.service with parameters of type EventBus Modifier and Type Method Description static RouteToEBServiceHandler
RouteToEBServiceHandler. build(EventBus eventBus, String address, String actionName)
static RouteToEBServiceHandler
RouteToEBServiceHandler. build(EventBus eventBus, String address, String actionName, io.vertx.core.eventbus.DeliveryOptions deliveryOptions)
-