Class DeliveryContext<T>
java.lang.Object
io.vertx.rxjava3.core.eventbus.DeliveryContext<T>
- All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate
Encapsulates a message being delivered by Vert.x as well as providing control over the message delivery.
Used with event bus interceptors.
NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final io.vertx.lang.rx.TypeArg<DeliveryContext> final io.vertx.lang.rx.TypeArg<T> -
Constructor Summary
ConstructorsConstructorDescriptionDeliveryContext(DeliveryContext delegate) DeliveryContext(Object delegate, io.vertx.lang.rx.TypeArg<T> typeArg_0) -
Method Summary
Modifier and TypeMethodDescriptionbody()booleaninthashCode()message()static <T> DeliveryContext<T> static <T> DeliveryContext<T> newInstance(DeliveryContext arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T) voidnext()Call the next interceptorbooleansend()toString()
-
Field Details
-
__TYPE_ARG
-
__typeArg_0
-
-
Constructor Details
-
DeliveryContext
-
DeliveryContext
-
-
Method Details
-
toString
-
equals
-
hashCode
-
getDelegate
- Specified by:
getDelegatein interfaceio.vertx.lang.rx.RxDelegate
-
message
-
next
public void next()Call the next interceptor -
send
public boolean send()- Returns:
- true if the message is being sent (point to point) or False if the message is being published
-
body
- Returns:
- the value delivered by the message (before or after being processed by the codec)
-
newInstance
-
newInstance
public static <T> DeliveryContext<T> newInstance(DeliveryContext arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
-