Exemplo n.º 1
0
 /// <summary>
 /// Creates a new <see cref="Spring.Threading.Locks.ReentrantReadWriteLock"/> with
 /// default ordering properties.
 /// </summary>
 public ReentrantReadWriteLock()
 {
     _readerLock = new ReaderLock(this);
     _writerLock = new WriterLock(this);
 }
 /// <summary> 
 /// Creates a new <see cref="Spring.Threading.Locks.ReentrantReadWriteLock"/> with
 /// default ordering properties.
 /// </summary>
 public ReentrantReadWriteLock()
 {
     _readerLock = new ReaderLock(this);
     _writerLock = new WriterLock(this);
 }