Interface AutoLock

All Superinterfaces:
AutoCloseable
All Known Implementing Classes:
AutoLockImpl

@ClassVersion(sourceVersion="$Id: AutoLock.java 1097 2024-02-06 20:10:12Z tquadrat $") @API(status=STABLE, since="0.1.0") public sealed interface AutoLock extends AutoCloseable permits AutoLockImpl

A wrapper for locks that supports the try-with-resources feature of Java 7.

Instead of

  m_Lock.lock();
  try
  {
      …
  }
  finally
  {
      m_Lock.unlock();
  }

you can write now

  private final AutoLock m_AutoLock = AutoLock.of();

  …

  try( final var ignored = m_AutoLock.lock() )
  {
      …
  }

The creation of the local reference to the wrapper object means some overhead but in very most scenarios this is negligible.

AutoLock will only expose the methods lock() and lockInterruptibly() of the interface Lock, but with a return value. Exposing other methods is not reasonable.

Calling close() on the AutoLock instance or Lock.unlock() on the wrapped Lock object inside the try block may cause unpredictable effects.

Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: AutoLock.java 1097 2024-02-06 20:10:12Z tquadrat $
Since:
0.1.0
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.lang.AutoLock"

UML Diagram for "org.tquadrat.foundation.lang.AutoLock"

UML Diagram for "org.tquadrat.foundation.lang.AutoLock"