Generated by
JDiff

Interface org.springframework.jms.core.JmsMessageOperations

Added interface org.springframework.messaging.core.MessageRequestReplyOperations.

Added Methods
T convertSendAndReceive(String, Object, Class<T>) Convert the given request Object to serialized form, possibly using a org.springframework.messaging.converter.MessageConverter, send it as a Message to the given destination, receive the reply and convert its body of the specified target class.
T convertSendAndReceive(String, Object, Class<T>, MessagePostProcessor) Convert the given request Object to serialized form, possibly using a org.springframework.messaging.converter.MessageConverter, apply the given post processor and send the resulting Message to the given destination, receive the reply and convert its body of the given target class.
T convertSendAndReceive(String, Object, Map<String, Object>, Class<T>) Convert the given request Object to serialized form, possibly using a org.springframework.messaging.converter.MessageConverter, send it as a Message with the given headers, to the specified destination, receive the reply and convert its body of the specified target class.
T convertSendAndReceive(String, Object, Map<String, Object>, Class<T>, MessagePostProcessor) Convert the given request Object to serialized form, possibly using a org.springframework.messaging.converter.MessageConverter, wrap it as a message with the given headers, apply the given post processor and send the resulting Message to the specified destination, receive the reply and convert its body of the given target class.
Message<?> sendAndReceive(String, Message<?>) Send a request message and receive the reply from the given destination.