Package org.springframework.http
Interface ReactiveHttpInputMessage
- All Superinterfaces:
 HttpMessage
- All Known Subinterfaces:
 ClientHttpResponse,MockServerClientHttpResponse,ServerHttpRequest
- All Known Implementing Classes:
 AbstractServerHttpRequest,ClientHttpResponseDecorator,MockClientHttpResponse,MockServerHttpRequest,ServerHttpRequestDecorator
A "reactive" HTTP input message that exposes the input as 
Publisher.
 Typically implemented by an HTTP request on the server-side or a response on the client-side.
- Since:
 - 5.0
 - Author:
 - Arjen Poutsma
 
- 
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Flux<DataBuffer>getBody()Return the body of the message as aPublisher.Methods inherited from interface org.springframework.http.HttpMessage
getHeaders 
- 
Method Details
- 
getBody
reactor.core.publisher.Flux<DataBuffer> getBody()Return the body of the message as aPublisher.- Returns:
 - the body content publisher
 
 
 -