Every well-behaved blocking method declares a the checked exception InterruptedException, which serves this exact purpose: to notify that the thread has been interrupted while it was blocked.
You have to catch this exception, and actually this could replace your stop field.
For instance, let's consider a logging system that will write messages to a file on a dedicated thread (so that the time spent on IO will not interfere in your application -- assuming it is not IO heavy).
Every thread has an initerrupted flag that can be read through Thread.currentThread().isInterrupted(). You try something like this:
class Logger {
private final File file = ...;
private final BlockingQueue<String> logLines = new LinkedBlockingQueue<String>();
private final Thread loggingThread = new Thread(new Runnable(){
@Override public void run() {
PrintWriter pw;
try {
pw = new PrintWriter(new BufferedOutputStream(new FileOutputStream(file)));
while (!Thread.currentThread().isInterrupted()) {
try {
pw.println(logLines.take());
} catch (InterruptedException e) {
Thread.currentThread().interrupt(); // good habit: make sure the interrupt status is set
}
}
pw.flush();
pw.close();
} catch (IOException e) { ... flush and close pw if not null and open ... }
}
});
{ loggingThread.start(); }
public void log(final String line) { logLines.offer(line); } // will always work, because logLines is a LinkedBQ.
public void stop() { loggingThread.interrupt(); }
}
Finally, for a graceful shutdown of your application, you must be sure to terminate this thread before letting the JVM shutdown. To do so, you must either be absolutely certain to call stop() before shutting down in any possible way, or you could register a shutdown hook, by adding something like this instance initializer to the class:
class Logger {
...
{
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override public void run() { close(); }
}));
}
}
This will force the JVM to call close() (therefore interrupting the thread, flushing and closing the file) before terminating.
stopvariable must bevolatile– denis.solonenko Dec 21 '11 at 1:00while(!shouldStop())you wouldn't need to make itvolatile. Your statement says it must bevolatilewhich while being the simplest solution is not the only solution. Only the Sith deal in absolutes (except Jedi making observations about Sith). – corsiKa Dec 21 '11 at 16:49