Class OutgoingJmsMessageMetadata
- java.lang.Object
-
- io.smallrye.reactive.messaging.jms.OutgoingJmsMessageMetadata
-
- All Implemented Interfaces:
JmsMessageMetadata
public class OutgoingJmsMessageMetadata extends Object implements JmsMessageMetadata
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
OutgoingJmsMessageMetadata.OutgoingJmsMessageMetadataBuilder
-
Constructor Summary
Constructors Constructor Description OutgoingJmsMessageMetadata(String correlationId, javax.jms.Destination replyTo, javax.jms.Destination destination, int deliveryMode, String type, JmsProperties properties)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OutgoingJmsMessageMetadata.OutgoingJmsMessageMetadataBuilder
builder()
String
getCorrelationId()
int
getDeliveryMode()
javax.jms.Destination
getDestination()
JmsProperties
getProperties()
javax.jms.Destination
getReplyTo()
String
getType()
-
-
-
Constructor Detail
-
OutgoingJmsMessageMetadata
public OutgoingJmsMessageMetadata(String correlationId, javax.jms.Destination replyTo, javax.jms.Destination destination, int deliveryMode, String type, JmsProperties properties)
-
-
Method Detail
-
getCorrelationId
public String getCorrelationId()
- Specified by:
getCorrelationId
in interfaceJmsMessageMetadata
-
getReplyTo
public javax.jms.Destination getReplyTo()
- Specified by:
getReplyTo
in interfaceJmsMessageMetadata
-
getDestination
public javax.jms.Destination getDestination()
- Specified by:
getDestination
in interfaceJmsMessageMetadata
-
getDeliveryMode
public int getDeliveryMode()
- Specified by:
getDeliveryMode
in interfaceJmsMessageMetadata
-
getType
public String getType()
- Specified by:
getType
in interfaceJmsMessageMetadata
-
getProperties
public JmsProperties getProperties()
- Specified by:
getProperties
in interfaceJmsMessageMetadata
-
builder
public static OutgoingJmsMessageMetadata.OutgoingJmsMessageMetadataBuilder builder()
-
-