Do flows work correctly in K/N? Are there any hidd...
# kotlin-native
j
Do flows work correctly in K/N? Are there any hidden pitfalls, anything like lack of multithreading in coroutines?
l
You already know coroutines don't support multithread on Kotlin/Native for now. Other than that, they should work just fine since flows can be singlethreaded.
e
They pass all our tests on K/N, too.
j
Cool, thanks!