Class HandlerAdapter
java.lang.Object
org.springframework.kafka.listener.adapter.HandlerAdapter
A wrapper for either an
InvocableHandlerMethod
or
DelegatingInvocableHandler
. All methods delegate to the
underlying handler.- Author:
- Gary Russell
-
Constructor Summary
ConstructorDescriptionHandlerAdapter
(DelegatingInvocableHandler delegatingHandler) Construct an instance with the provided delegating handler.HandlerAdapter
(InvocableHandlerMethod invokerHandlerMethod) Construct an instance with the provided method. -
Method Summary
Modifier and TypeMethodDescriptiongetBean()
getInvocationResultFor
(Object result, Object inboundPayload) getMethodAsString
(Object payload) boolean
Return true if any handler method has an async reply type.
-
Constructor Details
-
HandlerAdapter
Construct an instance with the provided method.- Parameters:
invokerHandlerMethod
- the method.
-
HandlerAdapter
Construct an instance with the provided delegating handler.- Parameters:
delegatingHandler
- the handler.
-
-
Method Details
-
isAsyncReplies
public boolean isAsyncReplies()Return true if any handler method has an async reply type.- Returns:
- the asyncReply.
- Since:
- 3.2
-
invoke
- Throws:
Exception
-
getMethodAsString
-
getBean
-
getInvocationResultFor
@Nullable public InvocationResult getInvocationResultFor(Object result, @Nullable Object inboundPayload)
-