I'm using a thread that is continuously reading from a queue.
Something like:
public void run() {
Object obj;
while(true) {
synchronized(objectsQueue) {
if(objectesQueue.isEmpty()) {
try {
objectesQueue.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
obj = objectesQueue.poll();
}
}
// Do something with the Object obj
}
}
What is the best way to stop this thread?
I see two options:
1 - Since Thread.stop() is deprecated, I can implement a stopThisThread() method that uses a n atomic check-condition variable.
2 - Send a Death Event object or something like that to the queue. When the thread fetches a death event it exists.
I prefer the 1st way, however, I don't know when to call the stopThisThread() method, as something might be on it's way to the queue and the stop signal can arrive first (not desirable).
Any suggestions?
waitshould be in awhileloop, not anif, to protect against spurious wakeups. – Tom Hawtin - tackline Apr 27 '10 at 11:54isInterrupted()in all code that's supposed to handle interruptions. But that doesn't mean that it's wrong and/or impossible to use. In fact it's the only way to tell a Thread that's blocking in an I/O call to check for some condition. – Joachim Sauer Apr 27 '10 at 12:36