当前,我泄漏了GlobalScope.launch()
创建的协程,其中的Job
在某些情况下并未被取消。我想知道是否在我的函数中创建了CoroutineScope()
,以及是否在收集垃圾后创建CoroutineScope()的范围取消了与我的自定义范围相关联的工作?
例如
class MyActivity: Activity {
fun myCustomCoroutineScopeScope() {
job = CoroutineScope.launch {
endlessFunctionCall()
}
}
suspend fun endlessFunctionCall() {
while (isActive) {
// perform work
}
}
// sometimes not invoked when application terminates
fun cleanup() {
job.cancel()
}
}