Suppose that you have two threads using synchronized methods to share a buffer, one method for writing to the buffer and one for reading from it. If the reader thread finds the buffer empty, explain which it would be more appropriate for the reader to use: sleep or wait.

link|improve this question

72% accept rate
2  
Is this a homework question? – Matt Ball May 18 '11 at 19:21
What distinguishes sleep() from wait()? What is the reader thread trying to accomplish? Given these facts, what is your answer? – dlev May 18 '11 at 19:23
feedback

2 Answers

Sounds a lot like homework, so I will only give a hint.

Take a look regarding how locks are managed during wait and sleep. The javadoc for both of them will explain the difference.

wait sleep

link|improve this answer
1  
How do you know it's java-related ? – cnicutar May 18 '11 at 19:25
I don't, I guessed since it the most common language for beginners classes in programming, and that the text fits Java context/sematics quite well. Could be related to another programming language, but I still bet my 5 cents on Java :) – Kaj May 18 '11 at 20:12
feedback

Clearly homework so a hint:

Ask yourself, if you were to choose to sleep how long should you sleep for? What happens if you choose a timeout that's too small, and what happens if it's too large?

Conversely, how long does it take for the buffer to be filled? Is it ok for the application to buffer data for a short time or does it need that data ASAP?

link|improve this answer
A hint isn't an answer. – Pacerier Feb 3 at 9:30
feedback

Your Answer

 
or
required, but never shown

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