Mutex.tryLock

If the lock is held by another caller, the method returns. Otherwise, the lock is acquired if it is not already held, and then the internal counter is incremented by one.

class Mutex
bool
tryLock
(
)

Return Value

Type: bool

true if the lock was acquired and false if not.

Throws

SyncError on error.

Meta