Thread-safe
-
Coroutine Shared mutable state and concurrencyKotlin 2023. 3. 5. 13:41
Shared mutable state and concurrency 안녕하세요! 안드로이드 11기 강희원입니다. 이번 포스팅에서는 코루틴 공식 가이드의 Shared mutable state and concurrency에 대해 알아보도록 하겠습니다. 목차 The problem Volatiles are of no help Thread-safe data structures Thread confinement fine-grained Thread confinement coarse-grained Mutual exclusion Actors The problem 코루틴은 Dispatchers.Default와 같은 디스패처를 이용해서 다중 스레드에서 동작할 수 있습니다. 이 과정에서 여러 동시성 문제가 발생할 수 있는데, ..