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.Buffer
getBody()
The body of this message.com.rabbitmq.client.BasicProperties
getProperties()
The properties for this message.String
getRoutingKey()
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
-
-