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> voidContent. registerReader(Class<T> type, Reader<T> reader)Registers a reader for a later use with an appropriateContent.as(Class)method call.<T> voidContent. 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()The returned reader provides means to convert aByteBufferpublisher to an array of bytes.static Reader<InputStream>ContentReaders. inputStreamReader()Creates a reader that bridges Flow API IO to a blocking JavaInputStream.static Reader<String>ContentReaders. stringReader(Charset charset)For basic charsets, returns a cachedStringContentReaderinstance or create a new instance otherwise. -
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(javax.json.bind.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<javax.json.JsonStructure>JsonProcessing. reader()Returns a function (reader) convertingPublisherofByteBuffers to a JSON-P object.Reader<javax.json.JsonStructure>JsonProcessing. reader(Charset charset)Returns a function (reader) convertingPublisherofByteBuffers 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<javax.json.JsonStructure>JsonSupport. reader()Returns a function (reader) convertingPublisherofByteBuffers to a JSON-P object.Reader<javax.json.JsonStructure>JsonSupport. reader(Charset charset)Returns a function (reader) convertingPublisherofByteBuffers to a JSON-P object.
-