Interface MessageHandlerMethodFactory
- All Known Implementing Classes:
DefaultMessageHandlerMethodFactory
public interface MessageHandlerMethodFactory
A factory for
InvocableHandlerMethod
that is suitable to process
an incoming Message
Typically used by listener endpoints that require a flexible method signature.
- Since:
- 4.1
- Author:
- Stephane Nicoll
-
Method Summary
Modifier and TypeMethodDescriptioncreateInvocableHandlerMethod
(Object bean, Method method) Create theInvocableHandlerMethod
that is able to process the specified method endpoint.
-
Method Details
-
createInvocableHandlerMethod
Create theInvocableHandlerMethod
that is able to process the specified method endpoint.- Parameters:
bean
- the bean instancemethod
- the method to invoke- Returns:
- an
InvocableHandlerMethod
suitable for that method
-