Uses of Interface
io.helidon.media.common.MessageBodyReader
-
Packages that use MessageBodyReader Package Description 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.webclient A reactive client for rest calls. -
-
Uses of MessageBodyReader in io.helidon.media.common
Classes in io.helidon.media.common that implement MessageBodyReader Modifier and Type Class Description classInputStreamBodyReaderMessage body reader forInputStream.classStringBodyReaderMessage body reader forString.Methods in io.helidon.media.common with parameters of type MessageBodyReader Modifier and Type Method Description MediaSupport.BuilderMediaSupport.Builder. registerReader(MessageBodyReader<?> reader)Register a new reader.MessageBodyReadableContentMessageBodyReadableContent. registerReader(MessageBodyReader<?> reader)MessageBodyReaderContextMessageBodyReaderContext. registerReader(MessageBodyReader<?> reader)MessageBodyReadersMessageBodyReaders. registerReader(MessageBodyReader<?> reader)Register a reader.Method parameters in io.helidon.media.common with type arguments of type MessageBodyReader Modifier and Type Method Description <T> Single<T>MessageBodyReaderContext. unmarshall(Flow.Publisher<DataChunk> payload, Class<? extends MessageBodyReader<T>> readerType, GenericType<T> type)Convert a given HTTP payload into a publisher by selecting a reader with the specified class.<T> Flow.Publisher<T>MessageBodyReaderContext. unmarshallStream(Flow.Publisher<DataChunk> payload, Class<? extends MessageBodyReader<T>> readerType, GenericType<T> type)Convert a given HTTP payload into a publisher by selecting a stream reader with the payload class. -
Uses of MessageBodyReader in io.helidon.media.jackson.common
Classes in io.helidon.media.jackson.common that implement MessageBodyReader Modifier and Type Class Description classJacksonBodyReaderMessage body reader supporting object binding with Jackson. -
Uses of MessageBodyReader in io.helidon.media.jsonb.common
Classes in io.helidon.media.jsonb.common that implement MessageBodyReader Modifier and Type Class Description classJsonbBodyReaderMessage body writer supporting object binding with JSON-B. -
Uses of MessageBodyReader in io.helidon.media.jsonp.common
Classes in io.helidon.media.jsonp.common that implement MessageBodyReader Modifier and Type Class Description classJsonpBodyReaderMessage body reader forJsonStructuresub-classes (JSON-P). -
Uses of MessageBodyReader in io.helidon.webclient
Methods in io.helidon.webclient with parameters of type MessageBodyReader Modifier and Type Method Description WebClientRequestBuilderWebClientRequestBuilder. register(MessageBodyReader<?> messageBodyReader)Register new message body reader.
-