Package io.vertx.reactivex.core.eventbus
Class DeliveryContext<T>
- java.lang.Object
-
- io.vertx.reactivex.core.eventbus.DeliveryContext<T>
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<DeliveryContext>
__TYPE_ARG
io.vertx.lang.rx.TypeArg<T>
__typeArg_0
-
Constructor Summary
Constructors Constructor Description DeliveryContext(DeliveryContext delegate)
DeliveryContext(Object delegate, io.vertx.lang.rx.TypeArg<T> typeArg_0)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
body()
boolean
equals(Object o)
DeliveryContext
getDelegate()
int
hashCode()
Message<T>
message()
static <T> DeliveryContext<T>
newInstance(DeliveryContext arg)
static <T> DeliveryContext<T>
newInstance(DeliveryContext arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
void
next()
Call the next interceptorboolean
send()
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<DeliveryContext> __TYPE_ARG
-
__typeArg_0
public final io.vertx.lang.rx.TypeArg<T> __typeArg_0
-
-
Constructor Detail
-
DeliveryContext
public DeliveryContext(DeliveryContext delegate)
-
-
Method Detail
-
getDelegate
public DeliveryContext getDelegate()
-
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
public Object body()
- Returns:
- the value delivered by the message (before or after being processed by the codec)
-
newInstance
public static <T> DeliveryContext<T> newInstance(DeliveryContext arg)
-
newInstance
public static <T> DeliveryContext<T> newInstance(DeliveryContext arg, io.vertx.lang.rx.TypeArg<T> __typeArg_T)
-
-