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> void
Content. registerReader(Class<T> type, Reader<T> reader)
Deprecated.since 2.0.0, useio.helidon.media.common.MessageBodyReaderContext.registerReader
<T> void
Content. 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()
Deprecated.since 2.0.0, useContentReaders.readBytes(Publisher)
insteadstatic Reader<InputStream>
ContentReaders. inputStreamReader()
Deprecated.since 2.0.0, useDefaultMediaSupport.inputStreamReader()
static Reader<String>
ContentReaders. stringReader(Charset charset)
Deprecated.since 2.0.0, useContentReaders.readString(Publisher, Charset)
} orDefaultMediaSupport.stringReader()
insteadstatic Reader<String>
ContentReaders. urlEncodedStringReader(Charset charset)
Deprecated.since 2.0.0, useContentReaders.readURLEncodedString(Publisher, Charset)
insteadMethods in io.helidon.media.common with parameters of type Reader Modifier and Type Method Description <T> void
MessageBodyReadableContent. registerReader(Class<T> type, Reader<T> reader)
Deprecated.<T> void
MessageBodyReadableContent. registerReader(Predicate<Class<?>> predicate, Reader<T> reader)
Deprecated.<T> void
MessageBodyReaderContext. registerReader(Class<T> type, Reader<T> reader)
Deprecated.since 2.0.0 useMessageBodyReaderContext.registerReader(MessageBodyReader)
instead<T> void
MessageBodyReaderContext. registerReader(Predicate<Class<?>> predicate, Reader<T> reader)
Deprecated.since 2.0.0 useMessageBodyReaderContext.registerReader(MessageBodyReader)
instead
-