Package io.vertx.rxjava.core.eventbus
Class DeliveryContext<T>
- java.lang.Object
-
- io.vertx.rxjava.core.eventbus.DeliveryContext<T>
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<DeliveryContext>__TYPE_ARGTypeArg<T>__typeArg_0
-
Constructor Summary
Constructors Constructor Description DeliveryContext(DeliveryContext delegate)DeliveryContext(Object delegate, TypeArg<T> typeArg_0)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectbody()booleanequals(Object o)DeliveryContextgetDelegate()inthashCode()Message<T>message()static <T> DeliveryContext<T>newInstance(DeliveryContext arg)static <T> DeliveryContext<T>newInstance(DeliveryContext arg, TypeArg<T> __typeArg_T)voidnext()Call the next interceptorbooleansend()StringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<DeliveryContext> __TYPE_ARG
-
-
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, TypeArg<T> __typeArg_T)
-
-