Interface BodyExtractor<T,M extends ReactiveHttpInputMessage>
- Type Parameters:
T
- the type of data to extractM
- the type ofReactiveHttpInputMessage
this extractor can be applied to
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A function that can extract data from a
ReactiveHttpInputMessage
body.- Since:
- 5.0
- Author:
- Arjen Poutsma
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Defines the context used during the extraction. -
Method Summary
Modifier and TypeMethodDescriptionextract
(M inputMessage, BodyExtractor.Context context) Extract from the given input message.
-
Method Details
-
extract
Extract from the given input message.- Parameters:
inputMessage
- the message to extract fromcontext
- the configuration to use- Returns:
- the extracted data
-