It's in its own coroutine continuation, not its ow...
# ktor
r
It's in its own coroutine continuation, not its own thread. If you're doing operations that actually block (as opposed to operations that merely suspend), you can quickly dry out the threadpool in which the ktor coroutines are run. Better to create a separate thread or threadpool for things like that.
👍 1