Spring Integration

org.springframework.integration.handler
Interface PostProcessingMessageHandler

All Known Implementing Classes:
AbstractReplyProducingPostProcessingMessageHandler, MessageFilter

public interface PostProcessingMessageHandler

Implementations of this interface are subclasses of AbstractMessageHandler that perform post processing after the AbstractMessageHandler.handleMessageInternal(org.springframework.integration.Message) call.

Since:
3.0
Author:
Gary Russell

Method Summary
 java.lang.Object postProcess(Message<?> message, java.lang.Object result)
          Take some further action on the result and/or message.
 

Method Detail

postProcess

java.lang.Object postProcess(Message<?> message,
                             java.lang.Object result)
Take some further action on the result and/or message.

Parameters:
result - The result from AbstractMessageHandler.handleMessageInternal(Message).
message - The message.
Returns:
The post-processed result.

Spring Integration