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 classOutgoingRabbitMQMetadata.BuilderAllows 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.Builderbuilder()StringgetAppId()StringgetClusterId()StringgetContentEncoding()StringgetContentType()StringgetCorrelationId()IntegergetDeliveryMode()StringgetExpiration()Map<String,Object>getHeaders()StringgetMessageId()IntegergetPriority()StringgetReplyTo()StringgetRoutingKey()ZonedDateTimegetTimestamp()StringgetType()StringgetUserId()
-
-
-
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()
-
-