Uses of Class
io.helidon.media.multipart.WriteableBodyPart
-
Packages that use WriteableBodyPart Package Description io.helidon.media.multipart Helidon Media MultiPart. -
-
Uses of WriteableBodyPart in io.helidon.media.multipart
Methods in io.helidon.media.multipart that return WriteableBodyPart Modifier and Type Method Description WriteableBodyPart
WriteableBodyPart.Builder. build()
static WriteableBodyPart
WriteableBodyPart. create(Object entity)
Create a new out-bound part backed by the specified entity.Methods in io.helidon.media.multipart that return types with arguments of type WriteableBodyPart Modifier and Type Method Description List<WriteableBodyPart>
WriteableMultiPart. bodyParts()
Methods in io.helidon.media.multipart with parameters of type WriteableBodyPart Modifier and Type Method Description WriteableMultiPart.Builder
WriteableMultiPart.Builder. bodyPart(WriteableBodyPart bodyPart)
Add a body part.static WriteableMultiPart
WriteableMultiPart. create(WriteableBodyPart... entities)
Shorthand for creatingWriteableMultiPart
instances with the specified entities as body parts.void
MultiPartEncoder. onNext(WriteableBodyPart bodyPart)
Method parameters in io.helidon.media.multipart with type arguments of type WriteableBodyPart Modifier and Type Method Description WriteableMultiPart.Builder
WriteableMultiPart.Builder. bodyPart(Supplier<WriteableBodyPart> supplier)
Add a body part.WriteableMultiPart.Builder
WriteableMultiPart.Builder. bodyParts(Collection<WriteableBodyPart> bodyParts)
Add body parts.static WriteableMultiPart
WriteableMultiPart. create(Collection<WriteableBodyPart> entities)
Shorthand for creatingWriteableMultiPart
instances with the specified entities as body parts.Flow.Publisher<DataChunk>
BodyPartBodyStreamWriter. write(Flow.Publisher<? extends WriteableBodyPart> content, GenericType<? extends WriteableBodyPart> type, MessageBodyWriterContext context)
Flow.Publisher<DataChunk>
BodyPartBodyStreamWriter. write(Flow.Publisher<? extends WriteableBodyPart> content, GenericType<? extends WriteableBodyPart> type, MessageBodyWriterContext context)
-