zak.taccardi
10/24/2019, 5:46 PMCoroutineScopeChannel<Int>val scope = CoroutineScope(Dispatchers.Default)
val channel: Channel<Int> = TODO()
fun onNewInt launch`(newInt: Int) {
  // `newInt` is delivered from outside a coroutine
  // what is the appropriate way to emit to the channel? 
}zak.taccardi
10/24/2019, 5:46 PM12withoutclass
10/24/2019, 5:48 PMUNLIMITEDwithoutclass
10/24/2019, 5:49 PMoctylFractal
10/24/2019, 5:49 PMsendBlockinggildor
10/24/2019, 11:14 PMzak.taccardi
10/24/2019, 11:15 PMscope.launch { }