Sort of. Suppose you're making a blocking io call ...
# ktor
m
Sort of. Suppose you're making a blocking io call (e.g. jdbc). Would you offload it to different pools depending on which pool you're in now, or would you just always do
withContext(myIoThreadPool) { // do stuff }
?