Are there threads in kotlin/native? if not is ther...
# kotlin-native
a
Are there threads in kotlin/native? if not is there a planning to add?
o
Kotlin/Native does not impose threading model at the moment, but nothing prevents you from using pthead APIs on most targets, or use workers APIs, which provides way safer concurrency model. See https://github.com/JetBrains/kotlin-native/tree/master/samples/workers or https://github.com/JetBrains/kotlin-native/tree/master/samples/videoplayer for samples using workers for concurrency.