Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Lets pretend I have two threads running in a program. Both threads reach a node(like in a tree or map) in which the user must enter data in order for the thread to continue. Normally, if the node is synchronized, whichever thread reaches that node first will wait for input while blocking any other threads from reaching that node.

The question is:

Is there a way to accommodate thread number two (the guy being locked out) by letting him get past thread number 1? Also, is it possible to do it without causing thread 1 to quit?

I already know that you can have a time limit for entering data so that thread 1 gets closed if it sits on the node for too long but is it possible to have thread 2 "play through" so to speak?

Never mind guys, I think I figured it out, I phrased my question poorly but thanks for trying.

share|improve this question
It seems that thread 2 needs the information thread 1 is waiting for. So how could thread 2 go on without that information? – ChrisJ Mar 12 '11 at 21:51

3 Answers

I'm not an expert in how to code it up but Java Concurrency In Practice covers this exact scenario and how to construct it using classes in java.util.concurrent. The book is well worth the price.

http://www.javaconcurrencyinpractice.com/

share|improve this answer

Why would you lock (synchronize) waiting for input?

You should only lock (synchronize) when you actually go to modify something that multiple threads have access to.

Edit: To be more clear: The only reason thread #2 should have to wait is if:

A) It needs to modify something that thread #1 is modifying.

B) It is dependent on (needs to read) something that thread #1 is modifying.

Otherwise, you have too broad of scope on your lock.

share|improve this answer
sorry, I forgot to mention that the input is actually being written to a file. – Alex Mar 12 '11 at 21:52
How does that change anything? The only reason thread#2 should be blocked is if it's trying to do the same thing as thread #1, or needs to read something thread#1 is modifying. – Brian Roach Mar 12 '11 at 21:53
it is, they're both reading and modifying the same file. – Alex Mar 12 '11 at 22:01
Then how could thread #2 possibly "go by" thread #1? Do you mean you want to bail and return an error or something? – Brian Roach Mar 12 '11 at 22:02
something like that, I actually just realized I phrased the question wrong. Is it possible to put threads in to a priority queue while the wait for a command or something like that? – Alex Mar 12 '11 at 22:05
show 1 more comment

If I get your question right, the answer is java.util.concurrent.locks.Lock.tryLock(). Just use it instead of synchronized keyword.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.