Locks
-
Core Java
Exploring Java’s Compare-and-Swap (CAS) for Atomic Operations
Welcome to the world of non-blocking programming, where the Compare-and-Swap (CAS) operation takes center stage. In this article, we’ll dive…
Read More » -
Core Java
Locks In Java
A lock is a thread synchronization mechanism like synchronized blocks. Locks are implemented internally using synchronized blocks. Therefore, we can…
Read More » -
Core Java
Java Lock Implementations
We all use 3rd party libraries as a normal part of development. Generally, we have no control over their internals.…
Read More »