Java Concurrency - ReentrantLock
ReentrantLock
ReentrantLock - A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor lock accessed using synchronized methods and statements, but with extended capabilities.
A ReentrantLock is owned by the thread last successfully locking, but not yet unlocking it. A thread invoking lock will return, successfully acquiring the lock, when the lock is not owned by another thread. The method will return immediately if the current thread already owns the lock. This can be checked using methods isHeldByCurrentThread(), and getHoldCount().
It is recommended practice to always immediately follow a call to lock with a try block, most typically in a before/after construction such as:
1 | class X { |
Example
1 | import java.util.concurrent.locks.ReentrantLock; |