The Spring Framework

Uses of Interface
org.springframework.jms.core.MessagePostProcessor

Packages that use MessagePostProcessor
org.springframework.jms.core Core package of the JMS support. 
 

Uses of MessagePostProcessor in org.springframework.jms.core
 

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.
 


The Spring Framework

Copyright © 2002-2007 The Spring Framework.