作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 API 请求,我应该根据响应打开新 Activity 或显示错误。
CoroutineScope(IO).launch {
val result = joinGameWithFriendRequest(inputSessionId)
if (result.error == "Session id not found") {
showToast("Session id not found")
this.cancel() // How to stop here?
}
if (this.isActive)
withContext(Dispatchers.Main) {
val intent = Intent(this@PlayWithFriend, PlayField::class.java)
startActivity(intent) //todo start new Activity in a func
}
}
我找到了一个使用 cancel()
和 .isActive
的解决方案,但它看起来很糟糕,如果你有多个连续检查,代码会很糟糕。有没有像函数中的“return”这样中断协程的好方法?
最佳答案
您可以在协程中使用 CoroutineScope.ensureActive()
函数来检查它是否处于 Activity 状态:
scope.launch {
...
ensureActive()
...
}
如果scope
被取消,ensureActive()
之后的代码将不会被执行。
根据您的代码,如果某些条件为 true
,您可以直接从协程返回而不是取消协程:
scope.launch {
val result = joinGameWithFriendRequest(inputSessionId)
if (result.error == "Session id not found") {
showToast("Session id not found")
return@launch
}
// the next code won't be executed if result.error == "Session id not found"
withContext(Dispatchers.Main) {
val intent = Intent(this@PlayWithFriend, PlayField::class.java)
startActivity(intent) //todo start new Activity in a func
}
}
关于android - 如何中断 Kotlin 协程的执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66666178/
在我的设置中,我试图有一个界面 Table继承自 Map (因为它主要用作 map 的包装器)。两个类继承自 Table - 本地和全局。全局的将有一个可变的映射,而本地的将有一个只有本地条目的映射。
Rust Nomicon 有 an entire section on variance除了关于 Box 的这一小节,我或多或少地理解了这一点和 Vec在 T 上(共同)变体. Box and Vec
我是一名优秀的程序员,十分优秀!