taer
02/08/2021, 8:19 PMval pool = Executors.newFixedThreadPool(N)
val dispatcher1 = pool.asCoroutineDispatcher()
val dispatcher2 = pool.asCoroutineDispatcher()
class AppCoroutineScope : CoroutineScope by CoroutineScope(dispatcher1 + evilCoroutineExceptionHandler) {
class NiceAppCoroutineScope : CoroutineScope by CoroutineScope(dispatcher2) {e
Zach Klippenstein (he/him) [MOD]
02/08/2021, 9:06 PMtaer
02/08/2021, 9:17 PMZach Klippenstein (he/him) [MOD]
02/08/2021, 9:18 PMtaer
02/08/2021, 9:27 PM