Daniele B
val scope1 = CoroutineScope(Job() + "myscope") val job1 = scope1.launch { … } val scope2 = CoroutineScope(Job() + "myscope") val job2 = scope2.launch { … }
elizarov
A modern programming language that makes developers happier.