if i have two blocking operations that I want to r...
# coroutines
w
if i have two blocking operations that I want to run in
withContext
, am I able to run these in parallel rather then serially?
p
Copy code
withContext(...) { 
   async { ... }
   async { ... } 
}
w
if i dont care about the result can i replace the
async
with
launch
?
👍 1
p
yes
👍 1
d
But
withContext
will not return until both children complete.
w
thanks yall