You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Squared Infinity edited this page May 22, 2017
·
6 revisions
AsyncReaderWriterLock
AsyncReaderWriterLock provides an exclusive access to critical section of code. It allows single exclusive Writer or multiple concurrent Readers. Writers have priority over readers. New readers will be queued and allowed access only when all waiting Writers have already executed.