Interface ConsumerHandler<RequestType,ResponseType>
-
- All Known Implementing Classes:
ConsumerHandlerBase,ConsumerHpdHandler,ConsumerPaginationHandler,ConsumerSortingHandler
public interface ConsumerHandler<RequestType,ResponseType>- Since:
- 4.3
- Author:
- Dmytro Rud
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConsumerHandler<RequestType,ResponseType>getWrappedHandler()ResponseTypehandle(RequestType request)
-
-
-
Method Detail
-
getWrappedHandler
ConsumerHandler<RequestType,ResponseType> getWrappedHandler()
- Returns:
- Handler which is one step nearer to the Camel route.
-
handle
ResponseType handle(RequestType request)
- Returns:
- Response to the given request.
-
-