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

If there is no thread which is waiting, using Object.wait() , any calls to Object.notify() or Object.notifyAll() have no effect. I have a scenario in which if I call Object.notify() when the wait set is empty, a subsequent call to Object.wait() should not put the thread to wait. How can this be accomplished? Semaphores may be one solution I can think of. Is there a more elegant solution?

share|improve this question

3 Answers

up vote 4 down vote accepted

This kind of scenario seems to be a perfect fit for a Semaphore. Call Semaphore.release() instead of notify() and Semaphore.acquire() instead of wait.

share|improve this answer

Use a flag to indicating a notification. Read the flag before entering wait and act accordingly.

boolean stopped = false;

public void run(){
   synchronized(object){
      while(!stopped)
        object.wait();
   }

}

public void stop(){
  synchronized(object){
    stopped=true;
    object.notify();
  }

}
share|improve this answer
Thanks for the quick response. – r.v Jul 5 '11 at 15:44
1  
+1: Any state change can record the fact that a notify() was called earlier. – Peter Lawrey Jul 5 '11 at 15:52

I would use Semaphore, CyclicBarrier or possibly CountDownLatch - whichever is a better fit for your real scenario. I think it's a good idea to reuse existing abstractions rather than use the low-level mechanisms yourself, unless those mechanisms give you exactly the behaviour you want (which they don't in this case).

share|improve this answer
Thanks for the good advice. I guess then Semaphore works the best for the scenario I have. – r.v Jul 5 '11 at 16:03

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.