Mutex

interface Mutex

Mutual exclusion for coroutines.

Mutex has two states: locked and unlocked. It is non-reentrant, that is invoking lock even from the same thread/coroutine that currently holds the lock still suspends the invoker.

JVM API note: Memory semantic of the Mutex is similar to synchronized block on JVM: An unlock on a Mutex happens-before every subsequent successful lock on that Mutex. Unsuccessful call to tryLock do not have any memory effects.

Functions

Link copied to clipboard
abstract fun holdsLock(owner: Any): Boolean

Checks mutex locked by owner

Link copied to clipboard
abstract suspend fun lock(owner: Any? = null)

Locks this mutex, suspending caller while the mutex is locked.

Link copied to clipboard
abstract fun tryLock(owner: Any? = null): Boolean

Tries to lock this mutex, returning false if this mutex is already locked.

Link copied to clipboard
abstract fun unlock(owner: Any? = null)

Unlocks this mutex. Throws IllegalStateException if invoked on a mutex that is not locked or was locked with a different owner token (by identity).

Properties

Link copied to clipboard
abstract val isLocked: Boolean

Returns true when this mutex is locked.

Link copied to clipboard
abstract val onLock: SelectClause2<Any?, Mutex>

Deprecated for removal without built-in replacement.

Extensions

Link copied to clipboard
inline suspend fun <T> Mutex.withLock(owner: Any? = null, action: () -> T): T

Executes the given action under this mutex's lock.

Sources

Link copied to clipboard