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.
feedback
|
|
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. | |||||||
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? | |||
|
feedback
|