is there a nonblocking http client that supports c...
# coroutines
c
is there a nonblocking http client that supports coroutines? i would like to create 1000 http requests in parallel. in java i would probably use jetty-http-client
k
you can take any future based one and adapt it to coroutines with ~10 lines of code
s
Also true.
c
ok retrofit is not what I’m searching for because it uses okhttp and that is mostly blocking, its what I’m using now. I guess i will use jetty-client and refactor to coroutines