Class ReaderWriterLock


  • public class ReaderWriterLock
    extends java.lang.Object
    A reader-writer lock from "Java Threads" by Scott Oak and Henry Wong.
    Author:
    Scott Oak and Henry Wong
    • Constructor Summary

      Constructors 
      Constructor Description
      ReaderWriterLock()
      Default constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void lockRead()
      Grab the read lock.
      void lockWrite()
      Grab the write lock.
      void unlock()
      Unlock.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • lockRead

        public void lockRead()
        Grab the read lock.
      • lockWrite

        public void lockWrite()
        Grab the write lock.
      • unlock

        public void unlock()
        Unlock.