However, if you're using, say, a nonblocking clien...
# ktor
m
However, if you're using, say, a nonblocking client for http, redis, whatever -- no need to farm that off to a separate threadpool. I write wrappers around
<insert favorite client for relevant protocol here>
that expose
CompletableFuture<Foo>
, which you can
.await()
on in a
suspend
function.