java-design-patterns/double-checked-locking
Per Wramdemark 218ba44dbf Upgrade of maven plugins (#951)
* Upgrade maven plugins

* Upgrade maven plugins

Some general code cleanup was necessary due to upgrade of PMD and checkstyle.

Also needed to add Junit 4 as a dependency due to Mockito.timout issue found here:
https://github.com/mockito/mockito/issues/152
2019-10-05 14:23:20 +03:00
..
2017-11-28 20:55:52 +02:00
2019-10-05 14:23:20 +03:00
2017-11-28 21:28:53 +02:00

layout, title, folder, permalink, categories, tags
layout title folder permalink categories tags
pattern Double Checked Locking double-checked-locking /patterns/double-checked-locking/ Concurrency
Java
Difficulty-Beginner
Idiom

Intent

Reduce the overhead of acquiring a lock by first testing the locking criterion (the "lock hint") without actually acquiring the lock. Only if the locking criterion check indicates that locking is required does the actual locking logic proceed.

alt text

Applicability

Use the Double Checked Locking pattern when

  • there is a concurrent access in object creation, e.g. singleton, where you want to create single instance of the same class and checking if it's null or not maybe not be enough when there are two or more threads that checks if instance is null or not.
  • there is a concurrent access on a method where method's behaviour changes according to the some constraints and these constraint change within this method.