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 MessageBodyReadableContent
MessageBodyReadableContent. create(Flow.Publisher<DataChunk> publisher, MessageBodyReaderContext context)
Create a new readable content backed by the given publisher and context.MessageBodyReadableContent
MessageBodyReadableContent. registerFilter(MessageBodyFilter filter)
MessageBodyReadableContent
MessageBodyReadableContent. registerReader(MessageBodyReader<?> reader)
MessageBodyReadableContent
MessageBodyReadableContent. 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 MessageBodyReadableContent
ReadableBodyPart. content()
Methods in io.helidon.media.multipart with parameters of type MessageBodyReadableContent Modifier and Type Method Description ReadableBodyPart.Builder
ReadableBodyPart.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 MessageBodyReadableContent
WebClientResponse. 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 MessageBodyReadableContent
ServerRequest. content()
ReturnsMessageBodyReadableContent
reactive representation of the request content.
-