Methods in org.springframework.jms.core with parameters of type MessagePostProcessor |
void |
JmsOperations.convertAndSend(javax.jms.Destination destination,
java.lang.Object message,
MessagePostProcessor postProcessor)
Send the given object to the specified destination, converting the object
to a JMS message with a configured MessageConverter. |
void |
JmsTemplate.convertAndSend(javax.jms.Destination destination,
java.lang.Object message,
MessagePostProcessor postProcessor)
|
void |
JmsOperations.convertAndSend(java.lang.Object message,
MessagePostProcessor postProcessor)
Send the given object to the default destination, converting the object
to a JMS message with a configured MessageConverter. |
void |
JmsTemplate.convertAndSend(java.lang.Object message,
MessagePostProcessor postProcessor)
|
void |
JmsOperations.convertAndSend(java.lang.String destinationName,
java.lang.Object message,
MessagePostProcessor postProcessor)
Send the given object to the specified destination, converting the object
to a JMS message with a configured MessageConverter. |
void |
JmsTemplate.convertAndSend(java.lang.String destinationName,
java.lang.Object message,
MessagePostProcessor postProcessor)
|