Package | Description |
---|---|
io.vertx.core.eventbus | |
io.vertx.ext.shell.command.base | |
io.vertx.reactivex.core.eventbus | |
io.vertx.rxjava.core.eventbus | |
io.vertx.serviceproxy |
Modifier and Type | Method and Description |
---|---|
DeliveryOptions |
DeliveryOptions.addHeader(String key,
String value)
Add a message header.
|
DeliveryOptions |
DeliveryOptions.setCodecName(String codecName)
Set the codec name.
|
DeliveryOptions |
DeliveryOptions.setHeaders(MultiMap headers)
Set message headers from a multi-map.
|
DeliveryOptions |
DeliveryOptions.setLocalOnly(boolean localOnly)
Whether a message should be delivered to local consumers only.
|
DeliveryOptions |
DeliveryOptions.setSendTimeout(long timeout)
Set the send timeout.
|
Modifier and Type | Method and Description |
---|---|
MessageProducer<T> |
MessageProducer.deliveryOptions(DeliveryOptions options)
Update the delivery options of this producer.
|
EventBus |
EventBus.publish(String address,
Object message,
DeliveryOptions options)
Like
EventBus.publish(String, Object) but specifying options that can be used to configure the delivery. |
<T> MessageProducer<T> |
EventBus.publisher(String address,
DeliveryOptions options)
Like
EventBus.publisher(String) but specifying delivery options that will be used for configuring the delivery of
the message. |
void |
Message.reply(Object message,
DeliveryOptions options)
Link
Message.reply(Object) but allows you to specify delivery options for the reply. |
<R> void |
Message.reply(Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<R>>> replyHandler)
Deprecated.
|
default <R> void |
Message.replyAndRequest(Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<R>>> replyHandler)
Like
Message.replyAndRequest(Object, Handler) but specifying options that can be used
to configure the delivery. |
default <T> EventBus |
EventBus.request(String address,
Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<T>>> replyHandler)
Like
EventBus.request(String, Object, Handler) but specifying options that can be used to configure the delivery. |
EventBus |
EventBus.send(String address,
Object message,
DeliveryOptions options)
Like
EventBus.send(String, Object) 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)
Deprecated.
|
<T> MessageProducer<T> |
EventBus.sender(String address,
DeliveryOptions options)
Like
EventBus.sender(String) but specifying delivery options that will be used for configuring the delivery of
the message. |
Constructor and Description |
---|
DeliveryOptions(DeliveryOptions other)
Copy constructor
|
Modifier and Type | Field and Description |
---|---|
protected DeliveryOptions |
BusPublish.options |
Modifier and Type | Method and Description |
---|---|
MessageProducer<T> |
MessageProducer.deliveryOptions(DeliveryOptions options)
Update the delivery options of this producer.
|
EventBus |
EventBus.publish(String address,
Object message,
DeliveryOptions options)
Like but specifying
options that can be used to configure the delivery. |
<T> MessageProducer<T> |
EventBus.publisher(String address,
DeliveryOptions options)
Like
EventBus.publisher(java.lang.String) but specifying delivery options that will be used for configuring the delivery of
the message. |
void |
Message.reply(Object message,
DeliveryOptions options)
Link
Message.reply(java.lang.Object) but allows you to specify delivery options for the reply. |
<R> void |
Message.reply(Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<R>>> replyHandler)
Deprecated.
|
<R> void |
Message.replyAndRequest(Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<R>>> replyHandler)
Like but specifying
options that can be used
to configure the delivery. |
<T> EventBus |
EventBus.request(String address,
Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<T>>> replyHandler)
Like but specifying
options that can be used to configure the delivery. |
<R> Single<Message<R>> |
Message.rxReply(Object message,
DeliveryOptions options)
Deprecated.
|
<R> Single<Message<R>> |
Message.rxReplyAndRequest(Object message,
DeliveryOptions options)
Like but specifying
options that can be used
to configure the delivery. |
<T> Single<Message<T>> |
EventBus.rxRequest(String address,
Object message,
DeliveryOptions options)
Like but specifying
options that can be used to configure the delivery. |
<T> Single<Message<T>> |
EventBus.rxSend(String address,
Object message,
DeliveryOptions options)
Deprecated.
|
EventBus |
EventBus.send(String address,
Object message,
DeliveryOptions options)
Like 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)
Deprecated.
|
<T> MessageProducer<T> |
EventBus.sender(String address,
DeliveryOptions options)
Like
EventBus.sender(java.lang.String) but specifying delivery options that will be used for configuring the delivery of
the message. |
Modifier and Type | Method and Description |
---|---|
MessageProducer<T> |
MessageProducer.deliveryOptions(DeliveryOptions options)
Update the delivery options of this producer.
|
EventBus |
EventBus.publish(String address,
Object message,
DeliveryOptions options)
Like but specifying
options that can be used to configure the delivery. |
<T> MessageProducer<T> |
EventBus.publisher(String address,
DeliveryOptions options)
Like
EventBus.publisher(java.lang.String) but specifying delivery options that will be used for configuring the delivery of
the message. |
void |
Message.reply(Object message,
DeliveryOptions options)
Link
Message.reply(java.lang.Object) but allows you to specify delivery options for the reply. |
<R> void |
Message.reply(Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<R>>> replyHandler)
Deprecated.
|
<R> void |
Message.replyAndRequest(Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<R>>> replyHandler)
Like but specifying
options that can be used
to configure the delivery. |
<R> Observable<Message<R>> |
Message.replyAndRequestObservable(Object message,
DeliveryOptions options)
Deprecated.
use
Message.rxReplyAndRequest(java.lang.Object) instead |
<R> Observable<Message<R>> |
Message.replyObservable(Object message,
DeliveryOptions options)
Deprecated.
use
Message.rxReply(java.lang.Object) instead |
<T> EventBus |
EventBus.request(String address,
Object message,
DeliveryOptions options,
Handler<AsyncResult<Message<T>>> replyHandler)
Like but specifying
options that can be used to configure the delivery. |
<T> Observable<Message<T>> |
EventBus.requestObservable(String address,
Object message,
DeliveryOptions options)
Deprecated.
|
<R> Single<Message<R>> |
Message.rxReply(Object message,
DeliveryOptions options)
Deprecated.
|
<R> Single<Message<R>> |
Message.rxReplyAndRequest(Object message,
DeliveryOptions options)
Like but specifying
options that can be used
to configure the delivery. |
<T> Single<Message<T>> |
EventBus.rxRequest(String address,
Object message,
DeliveryOptions options)
Like but specifying
options that can be used to configure the delivery. |
<T> Single<Message<T>> |
EventBus.rxSend(String address,
Object message,
DeliveryOptions options)
Deprecated.
|
EventBus |
EventBus.send(String address,
Object message,
DeliveryOptions options)
Like 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)
Deprecated.
|
<T> MessageProducer<T> |
EventBus.sender(String address,
DeliveryOptions options)
Like
EventBus.sender(java.lang.String) but specifying delivery options that will be used for configuring the delivery of
the message. |
<T> Observable<Message<T>> |
EventBus.sendObservable(String address,
Object message,
DeliveryOptions options)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static <T> T |
ProxyHelper.createProxy(Class<T> clazz,
Vertx vertx,
String address,
DeliveryOptions options)
Deprecated.
use instead
ServiceProxyBuilder |
ServiceProxyBuilder |
ServiceProxyBuilder.setOptions(DeliveryOptions options)
Set delivery options to be used during a proxy call.
|
Copyright © 2023 Eclipse. All rights reserved.