Alternative for thread pools in K/N? Or depend on ...
# kotlin-native
a
Alternative for thread pools in K/N? Or depend on C-libs probably? How does multithreaded-threaded coroutines K/N manages it?
a
Not 100% sure about coroutines, but Reaktive has its own implementation of thread pools. https://github.com/badoo/Reaktive/tree/master/reaktive/src/nativeCommonMain/kotlin/com/badoo/reaktive/looperthread
k
kotlinx.coroutines does not use thread pools on native, as far as I know.
k
what does Dispatchers.Default use on native?
k
I believe it's a single background thread
☝️ 1
Now, it's been a while since I've dug into that, so I could be wrong
k
huh
a
Btw, as per the doc