Uses of Interface
org.springframework.web.reactive.function.BodyInserters.MultipartInserter
Package
Description
Provides a foundation for both the reactive client and server subpackages.
-
Uses of BodyInserters.MultipartInserter in org.springframework.web.reactive.function
Modifier and TypeMethodDescriptionstatic <T,
P extends Publisher<T>>
BodyInserters.MultipartInserterBodyInserters.fromMultipartAsyncData
(String name, P publisher, Class<T> elementClass) Return aBodyInserters.MultipartInserter
to write the given asynchronous parts, as multipart data.static <T,
P extends Publisher<T>>
BodyInserters.MultipartInserterBodyInserters.fromMultipartAsyncData
(String name, P publisher, ParameterizedTypeReference<T> typeReference) Variant ofBodyInserters.fromMultipartAsyncData(String, Publisher, Class)
that accepts aParameterizedTypeReference
for the element type, which allows specifying generic type information.BodyInserters.fromMultipartData
(String name, Object value) Return aBodyInserters.MultipartInserter
to write the given parts, as multipart data.BodyInserters.fromMultipartData
(MultiValueMap<String, ?> multipartData) Return aBodyInserters.MultipartInserter
to write the givenMultiValueMap
as multipart data.<T,
P extends Publisher<T>>
BodyInserters.MultipartInserterBodyInserters.MultipartInserter.withPublisher
(String name, P publisher, Class<T> elementClass) Add an asynchronous part withPublisher
-based content.<T,
P extends Publisher<T>>
BodyInserters.MultipartInserterBodyInserters.MultipartInserter.withPublisher
(String name, P publisher, ParameterizedTypeReference<T> typeReference) Variant ofwithPublisher(String, Publisher, Class)
that accepts aParameterizedTypeReference
for the element type, which allows specifying generic type information.