concurrent

Reentrant ReadWriteLock example of value calculator

This is an example of how to use a ReentrantReadWriteLock of a value calculator. We have implemented a method that uses a ReadWriteLock and implements the calculate(int value), the getCalculatedValue() and the getValue() methods. In short the class is described below:

  • It creates a ReentrantReadWriteLock.
  • First it calls calculate(int value) with the int value that is to be calculated. The method acquires the lock used for writing, using writeLock() API method of ReadWriteLock and lock() API method of Lock. After acquiring the lock, this method calculates the value. Finally the method releases the lock, using writeLock() API method of ReadWriteLock and unlock() API method of Lock.
  • The getCalculatedValue() method returns the calculated value. It gets the lock used for reading, using readLock() API method of ReadWriteLock and lock() API method of Lock. It returns the calculated value and then releases the lock, using readLock() API method of ReadWriteLock and unlock() API method of Lock.
  • The getValue() method of the class returns the initial value, using readLock() API method of ReadWriteLock and lock() API method of Lock to get the lock and then releases the lock, using readLock() API method of ReadWriteLock and unlock() API method of Lock.

Let’s take a look at the code snippet that follows:  

public class Calculator {
    private int calculatedValue;
    private int value;
    private ReadWriteLock lock = new ReentrantReadWriteLock();
 
    public void calculate(int value) {

  lock.writeLock().lock();

  try {


this.value = value;


this.calculatedValue = doMySlowCalculation(value);

  } finally {


lock.writeLock().unlock();

  }
    }
 
    public int getCalculatedValue() {

  lock.readLock().lock();

  try {


return calculatedValue;

  } finally {


lock.readLock().unlock();

  }
    }
 
    public int getValue() {

  lock.readLock().lock();

  try {


return value;

  } finally {


lock.readLock().unlock();

  }
    }
}

  
This was an example of how to use a ReentrantReadWriteLock of a value calculator in Java.
 

Related Article:

Reference: Java Concurrency Part 2 – Reentrant Locks from our JCG partners at the Carfey Software blog

Byron Kiourtzoglou

Byron is a master software engineer working in the IT and Telecom domains. He is an applications developer in a wide variety of applications/services. He is currently acting as the team leader and technical architect for a proprietary service creation and integration platform for both the IT and Telecom industries in addition to a in-house big data real-time analytics solution. He is always fascinated by SOA, middleware services and mobile development. Byron is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button