作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将我们当前的应用程序从 Java 转换为 Kotlin,我遇到了这个问题。
用于使用线程从服务器传输数据的 java 实现。
它将创建大约 100 个不同的线程来请求数据,但据我所见,一次运行的线程不超过 4 个,其他线程将等待线程完成后再开始。
在将它翻译成 Kotlin 时,我使用了 Coroutines
这会产生一个问题,因为服务器显然无法处理实际发送的 100 个请求。
所有协程都在同一个范围内启动,所以它是这样的:
//this is a custom scope that launches on Dispatchers.IO + a job that I can use to cancel everything
transferScope.launch {
//loadData is a suspending function that returns true/false
val futures = mDownloadJobs.map{ async { it.loadData() } }
val responses = futures.awaitAll()
//check that everything in responses is true etc....
}
最佳答案
要求每个协程获取 Kotlin Semaphore
在提出请求之前从总共 5 个许可中获得许可。
像这样的东西:
import kotlinx.coroutines.sync.Semaphore
val requestSemaphore = Semaphore(5)
val futures = mDownloadJobs.map {
async {
// Will limit number of concurrent requests to 5
requestSemaphore.withPermit {
it.loadData()
}
}
}
val responses = futures.awaitAll()
关于android - 限制可以在范围内运行的最大协程数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58428584/
在我的设置中,我试图有一个界面 Table继承自 Map (因为它主要用作 map 的包装器)。两个类继承自 Table - 本地和全局。全局的将有一个可变的映射,而本地的将有一个只有本地条目的映射。
Rust Nomicon 有 an entire section on variance除了关于 Box 的这一小节,我或多或少地理解了这一点和 Vec在 T 上(共同)变体. Box and Vec
我是一名优秀的程序员,十分优秀!