Coroutines

Kotlin

Kotlin Coroutines and Synchronisation: An Example of using Mutex

Applications utilising concurrency must synchronise access to shared state. In this blog post, we will go through an example of building a class that can safely share access to mutable between concurrent operations with the help of `Mutex`.

Read