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
.io.helidon.media.jackson.common Jackson media type support.io.helidon.media.jsonb.common JSON-B media type support.io.helidon.media.jsonp.common JSON-P media type support.io.helidon.media.jsonp.server -
-
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)
Registers a reader for a later use with an appropriateContent.as(Class)
method call.<T> void
Content. registerReader(Predicate<Class<?>> predicate, Reader<T> reader)
Registers a reader for a later use with an appropriateContent.as(Class)
method call. -
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 aDataChunk
publisher to an array of bytes.static Reader<InputStream>
ContentReaders. inputStreamReader()
Get a reader that converts aDataChunk
publisher to a blocking JavaInputStream
.static Reader<String>
ContentReaders. stringReader(Charset charset)
static Reader<String>
ContentReaders. urlEncodedStringReader(Charset charset)
-
Uses of Reader in io.helidon.media.jackson.common
Methods in io.helidon.media.jackson.common that return Reader Modifier and Type Method Description static Reader<Object>
JacksonProcessing. reader(ObjectMapper objectMapper)
-
Uses of Reader in io.helidon.media.jsonb.common
Methods in io.helidon.media.jsonb.common that return Reader Modifier and Type Method Description static Reader<Object>
JsonBinding. reader(Jsonb jsonb)
-
Uses of Reader in io.helidon.media.jsonp.common
Methods in io.helidon.media.jsonp.common that return Reader Modifier and Type Method Description Reader<JsonStructure>
JsonProcessing. reader()
Returns a function (reader) convertingPublisher
ofByteBuffer
s to a JSON-P object.Reader<JsonStructure>
JsonProcessing. reader(Charset charset)
Returns a function (reader) convertingPublisher
ofByteBuffer
s to a JSON-P object. -
Uses of Reader in io.helidon.media.jsonp.server
Methods in io.helidon.media.jsonp.server that return Reader Modifier and Type Method Description Reader<JsonStructure>
JsonSupport. reader()
Returns a function (reader) convertingPublisher
ofByteBuffer
s to a JSON-P object.Reader<JsonStructure>
JsonSupport. reader(Charset charset)
Returns a function (reader) convertingPublisher
ofByteBuffer
s to a JSON-P object.
-