Class DeliveryContext<T>


  • public class DeliveryContext<T>
    extends Object
    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.

    • Constructor Detail

      • DeliveryContext

        public DeliveryContext​(Object delegate,
                               TypeArg<T> typeArg_0)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • message

        public Message<T> message()
        Returns:
        The message being delivered
      • 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)