Package | Description |
---|---|
io.vertx.rxjava.core | |
io.vertx.rxjava.core.eventbus |
Modifier and Type | Method and Description |
---|---|
EventBus |
Vertx.eventBus()
Get the event bus object.
|
Modifier and Type | Method and Description |
---|---|
static EventBus |
EventBus.newInstance(EventBus arg) |
EventBus |
EventBus.publish(String address,
Object message)
Publish a message.
|
EventBus |
EventBus.publish(String address,
Object message,
DeliveryOptions options)
Like
publish(java.lang.String, java.lang.Object) but specifying options that can be used to configure the delivery. |
EventBus |
EventBus.send(String address,
Object message)
Sends a message.
|
<T> EventBus |
EventBus.send(String address,
Object message,
DeliveryOptions options)
Like
EventBus but specifying options that can be used to configure the delivery. |
<T> EventBus |
EventBus.send(String address,
Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<T>>> replyHandler)
Like
send(java.lang.String, java.lang.Object) but specifying a replyHandler that will be called if the recipient
subsequently replies to the message. |
<T> EventBus |
EventBus.send(String address,
Object message,
Handler<AsyncResult<Message<T>>> replyHandler)
Like
send(java.lang.String, java.lang.Object) but specifying a replyHandler that will be called if the recipient
subsequently replies to the message. |
Copyright © 2015. All Rights Reserved.