Package io.vertx.rabbitmq
Interface RabbitMQMessage
- 
 public interface RabbitMQMessageRepresent a message received message received in a rabbitmq-queue.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Bufferbody()StringconsumerTag()com.rabbitmq.client.Envelopeenvelope()IntegermessageCount()com.rabbitmq.client.BasicPropertiesproperties()
 
- 
- 
- 
Method Detail- 
bodyBuffer body() - Returns:
- the message body
 
 - 
consumerTagString consumerTag() - Returns:
- the consumer tag associated with the consumer
 
 - 
envelopecom.rabbitmq.client.Envelope envelope() - Returns:
- packaging data for the message
 
 - 
propertiescom.rabbitmq.client.BasicProperties properties() - Returns:
- content header data for the message
 
 - 
messageCountInteger messageCount() - Returns:
- the message count for messages obtained with RabbitMQClient.basicGet(String, boolean)
 
 
- 
 
-