and then usage: ``` channel.consumeEachOn(CommonPo...
# coroutines
r
and then usage:
Copy code
channel.consumeEachOn(CommonPool) {
   if(it.sth()){
     doSth()
  } else {
     breakOut()
  }
}