Skip to content

Threading ▪ Locks ▪ AsyncReaderWriterLock

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.

Clone this wiki locally