ReentrantLock is a Java mutex class.

learn more… | top users | synonyms

5
votes
1answer
1k views

Spring Web Flow LockTimeoutException

We are using Spring Web Flow (2.0.9) in the Weblogic 10 clustured environment. And in production we are getting a lot of LockTimeoutException : Unable to acquire conversation lock after 30 seconds. I ...
4
votes
2answers
1k views

Does making a Reentrant Lock static and make it a mutex?

In Brian Goetz's book, Java Concurrency in Practice, his example of a Reentrant lock is programmed like this: Lock lock = new ReentrantLock(); However, I am curious to know if changing the above ...
3
votes
3answers
53 views

Unlocking lock owned by another thread java

I have a LockManager that manages the locks of several threads. Sometimes the threads are bad boys, and I have to kill them and ask the LockManager to release all their locks. However, since I use ...
3
votes
1answer
204 views

BlockingQueue Implemetation using ReentrantLock

I was writing my own implementation of BlockingQueue for practice. I am trying to avoid using the synchronized keyword for the methods. I would instead like to use ReentrantLock. What is the best way ...
2
votes
4answers
294 views

ReentrantLock synchronizing getters and setters

Let's say you have the following code: public int getSpeedX() { speedLock.lock(); try { return speedX; } finally { speedLock.unlock(); } } public void setSpeedX(int ...
2
votes
3answers
887 views

Implementing blocking concurrency using ReentrantLock

I am attempting to implement a class to enforce concurrency in my java application by blocking asynchronous attempts to a modify a given instance of an entity (identified by a key) using RentrantLock. ...
2
votes
1answer
127 views

is that possible to read before write using ReentrantReadWriteLock?

I am implementing a database which can read and write data. For concurrency issue, I need to implement lock. Normally, ReentrantReadWriteLock will let write execute before read. How Can I go ...
2
votes
2answers
685 views

Java - running jobs async using ReentrantLock?

The code below allows us to run a job while ensuring that only one job at a time can run by using ReentrantLock. Is there any way to modify this code to run job.call() asynchronously and to return ...
2
votes
1answer
357 views

How to find out contention problems in java when most of the classes are concurrent

We used yourkit profiler to find out and resolve many contention issues in our application. We used thread monitoring to see which threads are blocked and resolved many of those issues. But yourkit ...
1
vote
2answers
3k views

why use a ReentrantLock if one can use synchronized(this)

I'm trying to understand what makes the lock in concurrency so important if one can use 'synchronized (this). In the dummy code below, I can do either: synchronized the entier method or synchronize ...
1
vote
3answers
88 views

Java lock and happend-before relation

I'm not sure if I'm interpreting the javadoc right. When using a ReentrantLock after calling the lock method and successfully gaining a lock, can you just access any object without any synchronized ...
1
vote
2answers
72 views

How to properly scope a lock

Let's say I have a ReentrantLock, ReentrantLock foo = new ReentrantLock(); and a method bar that uses the lock, public void bar() { foo.lock(); try { methodOne(); } ...
1
vote
1answer
79 views

Why is there no synchronized keyword used in Java lock implementations?

synchronized is used in Java to deal with mutex sort of things. However the implementations of Lock interface like ReentrantLock in Java does not use this keyword. All the code looks just normal code. ...
1
vote
3answers
297 views

Differences between synchronized keyword and ReentrantLock

I made a thread pool based on the example on this page. In the worker thread we have the infinite loop that never lets the thread die and the wait() method call that pauses the thread when there is no ...
1
vote
1answer
183 views

How can I fix this “not quite synchronized” consumer producer example

I am trying to familiarize myself with the ReentrantLock and ConditionVariable classes. I implemented this Scala code ( without anything "Scala specific" in it ): object Conditioned { var pops ...
1
vote
2answers
324 views

Java : ReentrantReadWriteLock with priority

The following is the typical reader and writer pattern (a lot of reads and few writes) private ReadWriteLock lock = new ReentrantReadWriteLock(); private int value; public void writeValue(int ...
1
vote
2answers
79 views

Reentrant lock - illegalmonitorstateexception when trying to write a byte[] to a serial port using rxtx

I have the following code which is giving me a lot of trouble, I think I've been staring at it too long and fresh eyes would be appreciated - Calling method - (in RobotInterface class) try ...
1
vote
1answer
26 views

Is a DelayQueue without fairness problematic?

In Java 7 the implementation of DelayQueue uses a ReentrantLock without a fairness policy. Is this a problem in the long run? Can a thread starve because of this? Thanks
1
vote
1answer
124 views

Why is lock captured to a local variable

In java JRE I saw the code private final ReentrantLock lock; public E poll() { final ReentrantLock lock = this.lock; lock.lock(); Why is lock captured to a private variable? I would ...
1
vote
1answer
396 views

multiprocessing > Manager() > RLock Error:

I've got a collection of multiprocessing.Process objects in a list, and they all use the same instance of what I will call a "process safe queue" to communicate in a process-safe (thread-safe but with ...
0
votes
2answers
57 views

Why isn't the awaiting thread activated with a signalAll?

I got 2 functions. The first one discoverHosts() sends an request message to other computers. After this it goes to sleep with the await command. A separate threat calls the handleMessage() function ...
0
votes
2answers
228 views

How does ReentrantLock synchronize?

I have looked at the Java API for ReentrantLock and what I can see is that no synchronization is used with the synchronized keyword. Is it in the below method in AbstractQueuedSynchronizer (that ...
0
votes
2answers
466 views

Future.cancel and ReentrantLocks

Scenario I have this class, let's say Foo, whose only job is to sequentially execute a set of tasks. Sounds simple, right? Well, all of these tasks are executed in their own separate thread. Instead ...
0
votes
1answer
60 views

Java - Reentrant Lock, can't access newly created Condition

I have created a new Condition chopstickFree and in my pickUpChopstick() method, I am waiting for a lock on it but I can't get access to it at all. Through debugging I have found that when it gets to ...
0
votes
0answers
175 views

Wrapping ExecutorService to provide custom execution

I want to write a reusable piece of code to allow waiting conditions while submitting tasks to an executor service. There are alot of implementaions for neat ways of blocking if too many tasks are ...
0
votes
1answer
89 views

BroadcastReceiver and ReentrantLock. Are there any problems?

I'm developing a clickable widget. I want to use a static java.util.concurrent.locks ReentrantLock so the widget logic is only called once at a time. But my fear is, that it may be possible in a ...