Package io.vertx.core.eventbus
Interface DeliveryContext<T>
- 
 public interface DeliveryContext<T>Encapsulates a message being delivered by Vert.x as well as providing control over the message delivery. Used with event bus interceptors.- Author:
- Tim Fox
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectbody()Message<T>message()voidnext()Call the next interceptorbooleansend()
 
- 
- 
- 
Method Detail- 
nextvoid next() Call the next interceptor
 - 
sendboolean send() - Returns:
- true if the message is being sent (point to point) or False if the message is being published
 
 - 
bodyObject body() - Returns:
- the value delivered by the message (before or after being processed by the codec)
 
 
- 
 
-