Package | Description |
---|---|
org.springframework.jms.listener.adapter |
Message listener adapter mechanism that delegates to target listener
methods, converting messages to appropriate message content types
(such as String or byte array) that get passed into listener methods.
|
Modifier and Type | Method and Description |
---|---|
static <T> JmsResponse<T> |
JmsResponse.forDestination(T result,
Destination destination)
Create a
JmsResponse targeting the specified Destination . |
static <T> JmsResponse<T> |
JmsResponse.forQueue(T result,
String queueName)
Create a
JmsResponse targeting the queue with the specified name. |
static <T> JmsResponse<T> |
JmsResponse.forTopic(T result,
String topicName)
Create a
JmsResponse targeting the topic with the specified name. |