Uses of Interface
io.avaje.http.client.BodyReader
-
Uses of BodyReader in io.avaje.http.client
Methods in io.avaje.http.client that return BodyReaderModifier 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) Methods in io.avaje.http.client with parameters of type BodyReaderModifier and TypeMethodDescription<T> THttpClientResponse.read(BodyReader<T> reader) Returning the response using the given response reader.