Description
Mutex allows up to add locks to
our data so it can be accessed safely in a concurrent manner. While
locked other threads can’t access the data. Mutexes
should generally
be used for managing
state.
Sep 18, 20201 min read
Mutex allows up to add locks to
our data so it can be accessed safely in a concurrent manner. While
locked other threads can’t access the data. Mutexes
should generally
be used for managing
state.