`withContext` doesn't start a coroutine, it just s...
# coroutines
b
withContext
doesn't start a coroutine, it just switches your execution onto a different context/thread, which sounds like what you need. don't block your caller's thread
👍 2
2