Uses of Interface
io.helidon.media.common.MessageBodyWriter
-
Packages that use MessageBodyWriter 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.io.helidon.webserver Reactive web server API. -
-
Uses of MessageBodyWriter in io.helidon.media.common
Classes in io.helidon.media.common that implement MessageBodyWriter Modifier and Type Class Description classByteChannelBodyWriterMessage body writer forReadableByteChannel.classCharSequenceBodyWriterWriter forCharSequence.classFileBodyWriterMessage body writer forFile.classPathBodyWriterMessage body writer forPath.classThrowableBodyWriterMessage body writer forThrowable.Methods in io.helidon.media.common with parameters of type MessageBodyWriter Modifier and Type Method Description MediaSupport.BuilderMediaSupport.Builder. registerWriter(MessageBodyWriter<?> writer)Register a new writer.MessageBodyWriteableContentMessageBodyWriteableContent. registerWriter(MessageBodyWriter<?> writer)MessageBodyWriterContextMessageBodyWriterContext. registerWriter(MessageBodyWriter<?> writer)MessageBodyWritersMessageBodyWriters. registerWriter(MessageBodyWriter<?> writer)Register a writer.Method parameters in io.helidon.media.common with type arguments of type MessageBodyWriter Modifier and Type Method Description <T> Flow.Publisher<DataChunk>MessageBodyWriterContext. marshall(Single<T> content, Class<? extends MessageBodyWriter<T>> writerType, GenericType<T> type, MessageBodyWriterContext fallback)Convert a given input publisher into HTTP payload by selecting a writer with the specified class.<T> Flow.Publisher<DataChunk>MessageBodyWriterContext. marshallStream(Flow.Publisher<T> content, Class<? extends MessageBodyWriter<T>> writerType, GenericType<T> type, MessageBodyWriterContext fallback)Convert a given input publisher into HTTP payload by selecting a stream writer with the specified class. -
Uses of MessageBodyWriter in io.helidon.media.jackson.common
Classes in io.helidon.media.jackson.common that implement MessageBodyWriter Modifier and Type Class Description classJacksonBodyWriterMessage body writer supporting object binding with Jackson. -
Uses of MessageBodyWriter in io.helidon.media.jsonb.common
Classes in io.helidon.media.jsonb.common that implement MessageBodyWriter Modifier and Type Class Description classJsonbBodyWriterMessage body writer supporting object binding with JSON-B. -
Uses of MessageBodyWriter in io.helidon.media.jsonp.common
Classes in io.helidon.media.jsonp.common that implement MessageBodyWriter Modifier and Type Class Description classJsonpBodyWriterMessage body writer forJsonStructuresub-classes (JSON-P). -
Uses of MessageBodyWriter in io.helidon.webclient
Methods in io.helidon.webclient with parameters of type MessageBodyWriter Modifier and Type Method Description WebClientRequestBuilderWebClientRequestBuilder. register(MessageBodyWriter<?> messageBodyWriter)Register new message body writer. -
Uses of MessageBodyWriter in io.helidon.webserver
Methods in io.helidon.webserver with parameters of type MessageBodyWriter Modifier and Type Method Description ServerResponseServerResponse. registerWriter(MessageBodyWriter<?> writer)
-