gpt4 book ai didi

Kotlin Coroutines 如何获取当前线程的 CoroutineScope?

转载 作者:行者123 更新时间:2023-12-02 12:58:36 29 4
gpt4 key购买 nike

在 Kotlin Coroutines 中,想为当前线程创建一个引用并在以后使用它。

fun myFuncion(){
//save current Thread CoroutineScope
var currentCoroutineScope : CoroutineScope // <How to create?>
GlobalScope.launch {
//Do something 001
currentCoroutineScope .launch {
//Do something 002

}
}
}

有人可以帮忙吗?

最佳答案

您可以使用保存对 Coroutines 范围的引用

val scope = CoroutineScope(Dispatchers.Default)

然后你可以像这样使用它
fun myFuncion() {
scope.launch {
// do something
}
}

评论更新:

如果你调用你的 myFunction()从主线程然后你可以做这样的事情
fun myFuncion() {
scope.launch {
// do something
withContext(Dispatchers.Main) {
//Do something 002
}

}
}

关于Kotlin Coroutines 如何获取当前线程的 CoroutineScope?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56659045/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com