Uses of Interface
io.helidon.common.http.Reader
-
Packages that use Reader Package Description io.helidon.common.http HTTP APIs and implementations usable by both server and client side of the HTTP story.io.helidon.media.common Common classes for processing content with a specificMediaType. -
-
Uses of Reader in io.helidon.common.http
Methods in io.helidon.common.http with parameters of type Reader Modifier and Type Method Description <T> voidContent. registerReader(Class<T> type, Reader<T> reader)Deprecated.since 2.0.0, useio.helidon.media.common.MessageBodyReaderContext.registerReader<T> voidContent. registerReader(Predicate<Class<?>> predicate, Reader<T> reader)Deprecated.since 2.0.0, useio.helidon.media.common.MessageBodyReaderContext.registerReader -
Uses of Reader in io.helidon.media.common
Methods in io.helidon.media.common that return Reader Modifier and Type Method Description static Reader<byte[]>ContentReaders. byteArrayReader()Get a reader that converts aDataChunkpublisher to an array of bytes.static Reader<InputStream>ContentReaders. inputStreamReader()Deprecated.static Reader<String>ContentReaders. stringReader(Charset charset)static Reader<String>ContentReaders. urlEncodedStringReader(Charset charset)Methods in io.helidon.media.common with parameters of type Reader Modifier and Type Method Description <T> voidMessageBodyReadableContent. registerReader(Class<T> type, Reader<T> reader)Deprecated.<T> voidMessageBodyReadableContent. registerReader(Predicate<Class<?>> predicate, Reader<T> reader)Deprecated.<T> voidMessageBodyReaderContext. registerReader(Class<T> type, Reader<T> reader)Deprecated.since 2.0.0 useMessageBodyReaderContext.registerReader(MessageBodyReader)instead<T> voidMessageBodyReaderContext. registerReader(Predicate<Class<?>> predicate, Reader<T> reader)Deprecated.since 2.0.0 useMessageBodyReaderContext.registerReader(MessageBodyReader)instead
-