Interface IReadWriteLock
Defines the interface for read-write lock
Namespace:
Assembly: .dll
Syntax
public interface IReadWriteLock
Methods
readLock()
Locks the read lock
Declaration
public abstract void readLock()
readUnlock()
Unlocks the read lock
Declaration
public abstract void readUnlock()
writeLock()
Locks the write lock
Declaration
public abstract void writeLock()
writeUnlock()
Unlocks the write lock
Declaration
public abstract void writeUnlock()