Class RabbitMQMessageConverter.OutgoingRabbitMQMessage
- java.lang.Object
-
- io.smallrye.reactive.messaging.rabbitmq.RabbitMQMessageConverter.OutgoingRabbitMQMessage
-
- Enclosing class:
- RabbitMQMessageConverter
public static final class RabbitMQMessageConverter.OutgoingRabbitMQMessage extends Object
Represents an outgoing RabbitMQ message.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description io.vertx.mutiny.core.buffer.BuffergetBody()The body of this message.com.rabbitmq.client.BasicPropertiesgetProperties()The properties for this message.StringgetRoutingKey()The routing key for this message.
-
-
-
Method Detail
-
getBody
public io.vertx.mutiny.core.buffer.Buffer getBody()
The body of this message.- Returns:
- the body
-
getRoutingKey
public String getRoutingKey()
The routing key for this message.- Returns:
- the routing key
-
getProperties
public com.rabbitmq.client.BasicProperties getProperties()
The properties for this message.- Returns:
- the properties
-
-