BV
Size: a a a
BV
AE
fun main() {
val executors = Executors.newFixedThreadPool(100_000)
executors.submit {
println("Executed")
}
}
fun main() {
val dispatcher = Executors.newFixedThreadPool(100_500).asCoroutineDispatcher()
val scope = CoroutineScope(dispatcher)
scope.launch {
println("Executed")
}
}
AE
BV
AE
AE
BV
AE
AE
PD
BV
AO
AO
AO
AO
AO
AE
VP
VP
D𝔇