When using Ktor as a client, if I do 2 requests in...
# ktor
c
When using Ktor as a client, if I do 2 requests in two different Coroutines for the same client in parallel, are they executed in parallel or does the client force them to run sequentially? I'm asking because my stdout output looks very sequential (no mess because of lines being printed one inside the other), so I'm wondering.
s
I think in JVM you can't get a line inside another, but you can get a bad order of lines