RWMutex


Object Hierarchy:

Object hierarchy for RWMutex

Description:

public class RWMutex : Object

Reader-writer mutex.

RWMutex allows concurrent readers while still supporting exclusive writers. Use readLock()/readUnlock() for read-only sections and writeLock()/writeUnlock() for mutations.

Example:

    var rw = new RWMutex ();
rw.readLock ();
rw.readUnlock ();


Namespace: Vala.Concurrent
Package: Valacore

Content:

Creation methods:

Methods:

Inherited Members:

All known members inherited from class GLib.Object