spierce7
12/02/2020, 4:24 AMCoroutineContext via coroutineContext , what is the best way for me to create child coroutines? I’m assuming I need to create a CoroutineScope, but there aren’t any utility methods I’ve found for this, making me think that there might be a better way?Zach Klippenstein (he/him) [MOD]
12/02/2020, 4:48 AMcoroutineScope {}. Otherwise, you can use CoroutineScope(coroutineContext)spierce7
12/02/2020, 4:57 AMcoroutineScope {} . It doesn’t look like it uses the current scope. If I call coroutineScope {} inside a coroutine, will it create child coroutines?bezrukov
12/02/2020, 6:31 AMZach Klippenstein (he/him) [MOD]
12/02/2020, 5:21 PM