Uses of Class
io.helidon.media.common.MessageBodyReadableContent
-
Packages that use MessageBodyReadableContent Package Description io.helidon.media.common Common classes for processing content with a specificMediaType.io.helidon.media.multipart Helidon Media MultiPart.io.helidon.webclient A reactive client for rest calls.io.helidon.webserver Reactive web server API. -
-
Uses of MessageBodyReadableContent in io.helidon.media.common
Methods in io.helidon.media.common that return MessageBodyReadableContent Modifier and Type Method Description static MessageBodyReadableContentMessageBodyReadableContent. create(Flow.Publisher<DataChunk> publisher, MessageBodyReaderContext context)Create a new readable content backed by the given publisher and context.MessageBodyReadableContentMessageBodyReadableContent. registerFilter(MessageBodyFilter filter)MessageBodyReadableContentMessageBodyReadableContent. registerReader(MessageBodyReader<?> reader)MessageBodyReadableContentMessageBodyReadableContent. registerReader(MessageBodyStreamReader<?> reader)Methods in io.helidon.media.common with parameters of type MessageBodyReadableContent Modifier and Type Method Description default Single<T>MessageBodyReader. unmarshall(MessageBodyReadableContent content, GenericType<T> type)Unmarshall the given content using this reader.default Single<T>MessageBodyReader. unmarshall(MessageBodyReadableContent content, Class<T> type)Unmarshall the given content using this reader.default Flow.Publisher<T>MessageBodyStreamReader. unmarshall(MessageBodyReadableContent content, GenericType<T> type)Unmarshall the given content using this reader.default Flow.Publisher<T>MessageBodyStreamReader. unmarshall(MessageBodyReadableContent content, Class<T> type)Unmarshall the given content using this reader. -
Uses of MessageBodyReadableContent in io.helidon.media.multipart
Methods in io.helidon.media.multipart that return MessageBodyReadableContent Modifier and Type Method Description MessageBodyReadableContentReadableBodyPart. content()Methods in io.helidon.media.multipart with parameters of type MessageBodyReadableContent Modifier and Type Method Description ReadableBodyPart.BuilderReadableBodyPart.Builder. content(MessageBodyReadableContent content)Sets the content for this part. -
Uses of MessageBodyReadableContent in io.helidon.webclient
Methods in io.helidon.webclient that return MessageBodyReadableContent Modifier and Type Method Description MessageBodyReadableContentWebClientResponse. content()Content to access entity. -
Uses of MessageBodyReadableContent in io.helidon.webserver
Methods in io.helidon.webserver that return MessageBodyReadableContent Modifier and Type Method Description MessageBodyReadableContentServerRequest. content()ReturnsMessageBodyReadableContentreactive representation of the request content.
-