Minor complaint, but there aren’t any first-class ...
# ktor
s
Minor complaint, but there aren’t any first-class helpers for creating asynchronous instances of client requests? I know you can easily do
async { request { } }
but still would nice to eliminate the boilerplate.
l
what syntax do you want?
d
Async/concurrency by default is generally discouraged and should always be explicit. You can make your own
requestAsync
method.
This is why they haven't made helpers.
s
I did say it was minor 🙂