Spring Integration

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

Packages that use MessagePostProcessor
org.springframework.integration.core   
org.springframework.integration.history   
 

Uses of MessagePostProcessor in org.springframework.integration.core
 

Methods in org.springframework.integration.core with parameters of type MessagePostProcessor
<R> Future<R>
AsyncMessagingTemplate.asyncConvertSendAndReceive(MessageChannel channel, Object request, MessagePostProcessor requestPostProcessor)
           
<R> Future<R>
AsyncMessagingOperations.asyncConvertSendAndReceive(MessageChannel channel, Object request, MessagePostProcessor requestPostProcessor)
           
<R> Future<R>
AsyncMessagingTemplate.asyncConvertSendAndReceive(Object request, MessagePostProcessor requestPostProcessor)
           
<R> Future<R>
AsyncMessagingOperations.asyncConvertSendAndReceive(Object request, MessagePostProcessor requestPostProcessor)
           
<R> Future<R>
AsyncMessagingTemplate.asyncConvertSendAndReceive(String channelName, Object request, MessagePostProcessor requestPostProcessor)
           
<R> Future<R>
AsyncMessagingOperations.asyncConvertSendAndReceive(String channelName, Object request, MessagePostProcessor requestPostProcessor)
           
<T> void
MessagingOperations.convertAndSend(MessageChannel channel, T message, MessagePostProcessor postProcessor)
          Send the given object to the specified channel, converting the object to a message with a configured MessageConverter.
<T> void
MessagingTemplate.convertAndSend(MessageChannel channel, T object, MessagePostProcessor postProcessor)
           
<T> void
MessagingOperations.convertAndSend(String channelName, T message, MessagePostProcessor postProcessor)
          Send the given object to the specified channel, converting the object to a message with a configured MessageConverter.
<T> void
MessagingTemplate.convertAndSend(String channelName, T object, MessagePostProcessor postProcessor)
           
<T> void
MessagingOperations.convertAndSend(T message, MessagePostProcessor postProcessor)
          Send the given object to the default channel, converting the object to a message with a configured MessageConverter.
<T> void
MessagingTemplate.convertAndSend(T object, MessagePostProcessor postProcessor)
           
 Object MessagingOperations.convertSendAndReceive(MessageChannel channel, Object request, MessagePostProcessor requestPostProcessor)
          Send the given request object to the specified channel, converting the object to a message with a configured MessageConverter.
 Object MessagingTemplate.convertSendAndReceive(MessageChannel channel, Object request, MessagePostProcessor requestPostProcessor)
           
 Object MessagingOperations.convertSendAndReceive(Object request, MessagePostProcessor requestPostProcessor)
          Send the given request object to the default channel, converting the object to a message with a configured MessageConverter.
 Object MessagingTemplate.convertSendAndReceive(Object request, MessagePostProcessor requestPostProcessor)
           
 Object MessagingOperations.convertSendAndReceive(String channelName, Object request, MessagePostProcessor requestPostProcessor)
          Send the given request object to the specified channel, converting the object to a message with a configured MessageConverter.
 Object MessagingTemplate.convertSendAndReceive(String channelName, Object request, MessagePostProcessor requestPostProcessor)
           
 

Uses of MessagePostProcessor in org.springframework.integration.history
 

Classes in org.springframework.integration.history that implement MessagePostProcessor
 class HistoryWritingMessagePostProcessor
           
 


Spring Integration

Copyright © 2010. All Rights Reserved.