Class ClosableLock

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.AutoCloseable, java.util.concurrent.locks.Lock

    public final class ClosableLock
    extends java.util.concurrent.locks.ReentrantLock
    implements java.lang.AutoCloseable
    Utility class to permit use AutoClosable, ensuring proper lock release.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      ClosableLock()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void close()  
      ClosableLock closeableLock()
      Default constructor, retaining lock.
      • Methods inherited from class java.util.concurrent.locks.ReentrantLock

        getHoldCount, getOwner, getQueuedThreads, getQueueLength, getWaitingThreads, getWaitQueueLength, hasQueuedThread, hasQueuedThreads, hasWaiters, isFair, isHeldByCurrentThread, isLocked, lock, lockInterruptibly, newCondition, toString, tryLock, tryLock, unlock
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ClosableLock

        public ClosableLock()
    • Method Detail

      • closeableLock

        public ClosableLock closeableLock()
        Default constructor, retaining lock.
        Returns:
        Closable lock
      • close

        public void close()
        Specified by:
        close in interface java.lang.AutoCloseable