Hi guys, what is the easy way to have something li...
# coroutines
s
Hi guys, what is the easy way to have something like ConcurrencyHashMap in Kotlin Multiplatform with Coroutines multiplatform? I'm building a library that the functions changes the values of a Map, removing, searching and adding values, and anyone that calls this functions can call in different threads(or workers in native if I'm correctly)
k
Either make the map an actor coroutine or use a mutex I think
s
I was reading about actors but apparently is just JVM, my project is Multiplatform and using Coroutines common