Syn::RWLock
Inherits Reference / Object
A many readers, mutually exclusive writer lock.
Allows readers to run concurrently but ensures that they will never run concurrently to a writer. Writers are mutually exclusive to both readers and writers.
Constructors
new(type : Core::Mutex::Type = :checked)
SourceInstance methods
lock_read
Sourcelock_read
Sourcelock_write
Sourcelock_write
Sourceunlock_read
Sourceunlock_write
Source