Polishing
This commit is contained in:
parent
5866693ece
commit
a4b278a269
|
|
@ -62,7 +62,7 @@ suspend fun RSocketRequester.Builder.connectWebSocketAndAwait(uri: URI): RSocket
|
|||
* @param producer the source of payload data value(s). This must be a
|
||||
* [Publisher] or another producer adaptable to a
|
||||
* [Publisher] via [org.springframework.core.ReactiveAdapterRegistry]
|
||||
* @param <T> the type of values to be produced
|
||||
* @param T the type of values to be produced
|
||||
* @author Sebastien Deleuze
|
||||
* @since 5.2
|
||||
*/
|
||||
|
|
@ -74,7 +74,7 @@ inline fun <reified T : Any> RSocketRequester.RequestSpec.dataWithType(producer:
|
|||
* variant leveraging Kotlin reified type parameters. This extension is not subject to type
|
||||
* erasure and retains actual generic type arguments.
|
||||
* @param publisher the source of payload data value(s)
|
||||
* @param <T> the type of values to be produced
|
||||
* @param T the type of values to be produced
|
||||
* @author Sebastien Deleuze
|
||||
* @since 5.2
|
||||
*/
|
||||
|
|
@ -86,7 +86,7 @@ inline fun <reified T : Any> RSocketRequester.RequestSpec.dataWithType(publisher
|
|||
* variant leveraging Kotlin reified type parameters. This extension is not subject to type
|
||||
* erasure and retains actual generic type arguments.
|
||||
* @param flow the [Flow] to write to the request
|
||||
* @param <T> the source of payload data value(s)
|
||||
* @param T the source of payload data value(s)
|
||||
* @author Sebastien Deleuze
|
||||
* @since 5.2
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ inline fun <reified T : Any, S : Publisher<T>> RequestBodySpec.body(publisher: S
|
|||
* @param producer the producer to write to the request. This must be a
|
||||
* [Publisher] or another producer adaptable to a
|
||||
* [Publisher] via [org.springframework.core.ReactiveAdapterRegistry]
|
||||
* @param <T> the type of the elements contained in the producer
|
||||
* @param T the type of the elements contained in the producer
|
||||
* @author Sebastien Deleuze
|
||||
* @since 5.2
|
||||
*/
|
||||
|
|
@ -52,7 +52,7 @@ inline fun <reified T : Any> RequestBodySpec.body(producer: Any): RequestHeaders
|
|||
* leveraging Kotlin reified type parameters. This extension is not subject to type
|
||||
* erasure and retains actual generic type arguments.
|
||||
* @param flow the [Flow] to write to the request
|
||||
* @param <T> the type of the elements contained in the publisher
|
||||
* @param T the type of the elements contained in the publisher
|
||||
* @author Sebastien Deleuze
|
||||
* @since 5.2
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ inline fun <reified T : Any, S : Publisher<T>> RequestBodySpec.body(publisher: S
|
|||
* leveraging Kotlin reified type parameters. This extension is not subject to type
|
||||
* erasure and retains actual generic type arguments.
|
||||
* @param flow the [Flow] to write to the request
|
||||
* @param <T> the type of the elements contained in the flow
|
||||
* @param T the type of the elements contained in the flow
|
||||
* @author Sebastien Deleuze
|
||||
* @since 5.2
|
||||
*/
|
||||
|
|
@ -57,7 +57,7 @@ inline fun <reified T : Any> RequestBodySpec.body(flow: Flow<T>): RequestHeaders
|
|||
* @param producer the producer to write to the request. This must be a
|
||||
* [Publisher] or another producer adaptable to a
|
||||
* [Publisher] via [org.springframework.core.ReactiveAdapterRegistry]
|
||||
* @param <T> the type of the elements contained in the producer
|
||||
* @param T the type of the elements contained in the producer
|
||||
* @author Sebastien Deleuze
|
||||
* @since 5.2
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ inline fun <reified T : Any> ServerResponse.BodyBuilder.body(publisher: Publishe
|
|||
* @param producer the producer to write to the response. This must be a
|
||||
* [Publisher] or another producer adaptable to a
|
||||
* [Publisher] via [org.springframework.core.ReactiveAdapterRegistry]
|
||||
* @param <T> the type of the elements contained in the producer
|
||||
* @param T the type of the elements contained in the producer
|
||||
* @author Sebastien Deleuze
|
||||
* @since 5.2
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue