ermac10k
05/26/2021, 1:58 PMorg.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5
private val fjp = ForkJoinPool().asCoroutineDispatcher()
...
runBlocking(fjp) {
myCollection.forEach {
launch { processEveryone(...) }
}
}
and ForkJoinPool().asCoroutineDispatcher() throws java.lang.ClassNotFoundException: kotlin.coroutines.AbstractCoroutineContextKey
i’ve found only two tickets and both of them have been closed because of versions incompatibility. but my versions should be compatible…
can you help?