Hey, can I use mutex or something like that for th...
# coroutines
j
Hey, can I use mutex or something like that for thread-safe collections?
m
You can use AtomicFU in your own implementations, like I did in Klogging for AtomicMutableList and AtomicMutableMap. (These implementations are possibly incomplete, and have not been torture-tested yet.)
j
Thank you!