We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a5063f commit c08035bCopy full SHA for c08035b
spring-webflux/src/main/kotlin/org/springframework/web/reactive/function/client/WebClientExtensions.kt
@@ -119,7 +119,7 @@ inline fun <reified T : Any> WebClient.ResponseSpec.bodyToFlux(): Flux<T> =
119
* @since 5.2
120
*/
121
@ExperimentalCoroutinesApi
122
-inline fun <reified T : Any> WebClient.ResponseSpec.bodyToFlow(batchSize: Int = 1): Flow<T> =
+inline fun <reified T : Any> WebClient.ResponseSpec.bodyToFlow(): Flow<T> =
123
bodyToFlux<T>().asFlow()
124
125
/**
0 commit comments