| Methods in org.springframework.jms.core with parameters of type MessagePostProcessor | 
|  void | JmsTemplate.convertAndSend(Destination destination,
               Object message,
               MessagePostProcessor postProcessor)
 | 
|  void | JmsOperations.convertAndSend(Destination destination,
               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(Object message,
               MessagePostProcessor postProcessor)
 | 
|  void | JmsOperations.convertAndSend(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(String destinationName,
               Object message,
               MessagePostProcessor postProcessor)
 | 
|  void | JmsOperations.convertAndSend(String destinationName,
               Object message,
               MessagePostProcessor postProcessor)Send the given object to the specified destination, converting the object
 to a JMS message with a configured MessageConverter.
 |