标签: kotlin coroutine
我有一个listner方法,该方法经常被调用。在这种方法中,我启动了一个协程。我只想在上一个完成时启动协同程序。有没有比我在这里使用布尔标志更好的方法
var ready = true; fun listenr(){ if(ready){ ready = false launch{ //coroutine ready = true } } }