https://kotlinlang.org logo
#coroutines
Title
# coroutines
j

Jonathan

03/15/2018, 6:13 PM
In other world: "Is it enough to guarantee that only there is no concurrent access to a variable? Can the thread cache cause trouble if the variable is accessed from different thread, event if the access is not concurrent?
e

elizarov

03/15/2018, 6:28 PM
Accesses from the same coroutine are always safe even if coroutine jumps threads on suspension.
👍 2
Technically that is what “not concurrent” means.
j

Jonathan

03/15/2018, 6:30 PM
Cool thank you.
3 Views