Package org.springframework.integration.handler

Interface Summary
MessageHandler Base message handler interface.
ReplyHandler Strategy interface for handling reply messages.
 

Class Summary
AbstractMessageHandlerAdapter<T> Base implementation of the MessageHandler interface that creates an invoker for the specified method and target object.
ConcurrentHandler A MessageHandler implementation that encapsulates a ThreadPoolTaskExecutor and delegates to a wrapped handler for concurrent, asynchronous message handling.
DefaultMessageHandlerAdapter<T> An implementation of MessageHandler that invokes the specified method on the provided target object.
InterceptingMessageHandler A message handler implementation that intercepts calls to another handler.
MessageHandlerChain A message handler implementation that passes incoming messages through a chain of handlers.
 

Exception Summary
MessageHandlerNotRunningException An exception indicating that a handler is not currently running.
MessageHandlerRejectedExecutionException An exception indicating that a message was rejected by a handler; typically this would be the result of a thread pool executor rejecting a handler task.