如何清除协程通道发送的值?

时间:2019-04-29 14:14:55

标签: kotlin kotlin-coroutines kotlinx.coroutines.channels

让我们说我已经在频道中发送了一些值,

val channel = Channel<Int>()
launch {
    for (x in 1..5) channel.send(x * x)
}

我如何“清除”它们?意思是不使用而消耗它们

0 个答案:

没有答案