Uses of Interface
io.avaje.http.client.BodyReader
-
Uses of BodyReader in io.avaje.http.client
Modifier and TypeMethodDescription<T> BodyReader
<T> BodyAdapter.beanReader
(Class<T> type) Return a BodyReader to read response content and convert to a bean.default <T> BodyReader
<T> BodyAdapter.beanReader
(Type type) Return a BodyReader to read response content and convert to a bean.<T> BodyReader
<T> JacksonBodyAdapter.beanReader
(Class<T> cls) <T> BodyReader
<T> JsonbBodyAdapter.beanReader
(Class<T> cls) <T> BodyReader
<T> JsonbBodyAdapter.beanReader
(Type type) <T> BodyReader
<List<T>> BodyAdapter.listReader
(Class<T> type) Return a BodyReader to read response content and convert to a list of beans.default <T> BodyReader
<List<T>> BodyAdapter.listReader
(Type type) Return a BodyReader to read response content and convert to a list of beans.<T> BodyReader
<List<T>> JacksonBodyAdapter.listReader
(Class<T> cls) <T> BodyReader
<List<T>> JsonbBodyAdapter.listReader
(Class<T> cls) <T> BodyReader
<List<T>> JsonbBodyAdapter.listReader
(Type type) Modifier and TypeMethodDescription<T> T
HttpClientResponse.read
(BodyReader<T> reader) Returning the response using the given response reader.