Class OutgoingRabbitMQMetadata
- java.lang.Object
-
- io.smallrye.reactive.messaging.rabbitmq.OutgoingRabbitMQMetadata
-
public class OutgoingRabbitMQMetadata extends Object
Used to represent RabbitMQ metadata in on outgoing message.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
OutgoingRabbitMQMetadata.Builder
Allows the builder-style construction ofOutgoingRabbitMQMetadata
-
Constructor Summary
Constructors Constructor Description OutgoingRabbitMQMetadata()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OutgoingRabbitMQMetadata.Builder
builder()
String
getAppId()
String
getClusterId()
String
getContentEncoding()
String
getContentType()
String
getCorrelationId()
Integer
getDeliveryMode()
String
getExpiration()
Map<String,Object>
getHeaders()
String
getMessageId()
Integer
getPriority()
String
getReplyTo()
String
getRoutingKey()
ZonedDateTime
getTimestamp()
String
getType()
String
getUserId()
-
-
-
Method Detail
-
getContentType
public String getContentType()
-
getContentEncoding
public String getContentEncoding()
-
getDeliveryMode
public Integer getDeliveryMode()
-
getPriority
public Integer getPriority()
-
getCorrelationId
public String getCorrelationId()
-
getReplyTo
public String getReplyTo()
-
getExpiration
public String getExpiration()
-
getMessageId
public String getMessageId()
-
getTimestamp
public ZonedDateTime getTimestamp()
-
getType
public String getType()
-
getUserId
public String getUserId()
-
getAppId
public String getAppId()
-
getClusterId
public String getClusterId()
-
getRoutingKey
public String getRoutingKey()
-
builder
public static OutgoingRabbitMQMetadata.Builder builder()
-
-