Another question, on `WebClient` I have made an ex...
# spring
s
Another question, on
WebClient
I have made an exception to the pattern I use (
await
prefix or
AndAwait
suffix), I have translated
fun exchange(): Mono<ClientResponse>
to
suspend fun awaitResponse(): ClientResponse
instead of
suspend fun exchangeAndAwait(): ClientResponse
. Any thoughts?