body
Extension for WebClient.RequestBodySpec.body providing a body(Publisher<T>)
variant leveraging Kotlin reified type parameters. This extension is not subject to type erasure and retains actual generic type arguments.
Author
Sebastien Deleuze
Since
5.0
Extension for WebClient.RequestBodySpec.body providing a body(Flow<T>)
variant leveraging Kotlin reified type parameters. This extension is not subject to type erasure and retains actual generic type arguments.
Author
Sebastien Deleuze
Since
5.2
Parameters
the Flow to write to the request
the type of the elements contained in the flow
Extension for WebClient.RequestBodySpec.body providing a body<T>(Any)
variant leveraging Kotlin reified type parameters. This extension is not subject to type erasure and retains actual generic type arguments.
Author
Sebastien Deleuze
Since
5.2
Parameters
the producer to write to the request. This must be a Publisher or another producer adaptable to a Publisher via org.springframework.core.ReactiveAdapterRegistry
the type of the elements contained in the producer