Files

26 lines
1003 B
Markdown
Raw Permalink Normal View History

2015-08-13 23:54:40 +02:00
---
layout: pattern
title: Double Checked Locking
folder: double-checked-locking
permalink: /patterns/double-checked-locking/
categories: Idiom
language: en
2015-12-28 15:52:44 +02:00
tags:
- Performance
2015-08-13 23:54:40 +02:00
---
## Intent
Reduce the overhead of acquiring a lock by first testing the
2015-08-13 23:54:40 +02:00
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.
## Class diagram
2015-08-13 23:54:40 +02:00
![alt text](./etc/double_checked_locking_1.png "Double Checked Locking")
## Applicability
Use the Double Checked Locking pattern when
2015-08-13 23:54:40 +02:00
* 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.