Click or drag to resize

IReaderWriterLock Interface

[Missing <summary> documentation for "T:com.espertech.esper.compat.threading.locks.IReaderWriterLock"]

Namespace:  com.espertech.esper.compat.threading.locks
Assembly:  NEsper.Compat (in NEsper.Compat.dll) Version: 8.0.0.0
Syntax
C#
public interface IReaderWriterLock

The IReaderWriterLock type exposes the following members.

Properties
  NameDescription
Public propertyIsWriterLockHeld
Indicates if the writer lock is held.
Public propertyReadLock
Gets the read-side lockable
Public propertyWriteLock
Gets the write-side lockable
Top
Methods
  NameDescription
Public methodAcquireReadLock
Acquires the read lock; the lock is released when the disposable object that was returned is disposed.
Public methodAcquireWriteLock
Acquires the write lock; the lock is released when the disposable object that was returned is disposed.
Public methodAcquireWriteLock(TimeSpan)
Public methodReleaseWriteLock
Releases the write lock, canceling the lock semantics managed by any current holder.
Top
See Also