See: Description
| Interface | Description |
|---|---|
| ExchangeStrategies |
Defines the strategies to request and response body conversion.
|
| ReaderStrategy<Res> |
Strategy for reading from a
HttpClientResponse and decoding the stream of bytes
to an Object of type <Res>. |
| WriterStrategy<Req> |
Strategy for encoding an object of type
<Req> and writing the encoded stream of bytes to an HttpClientRequest. |
| Class | Description |
|---|---|
| EmptyReaderStrategy |
Read a response without a body.
|
| EmptyWriterStrategy |
Write a request without a body.
|
| ExchangeStrategies.Builder |
A mutable builder for creating an
ExchangeStrategies |
| FallbackReaderStrategy |
Read a response as a
String as a catch-all, unless the given response type is ErrorResponse, in which
case it will attempt to store the response into the ErrorResponse body field. |
| JacksonReaderStrategy<Res> |
Read a response into JSON and convert to an Object of type
<Res> using Jackson 2.9. |
| JacksonWriterStrategy |
Write to a request from an
Object to a JSON String using Jackson 2.9. |
| MultipartWriterStrategy |
Write to a request from a
Consumer<HttpClientRequest.Form> using reactor-netty's HttpClient.RequestSender.sendForm(java.util.function.BiConsumer). |