This commit is contained in:
zzz
2012-09-28 18:41:19 +00:00
parent 076558d4f5
commit 1a50b6243d

View File

@@ -80,9 +80,12 @@ class Writer {
}
private class Runner implements Runnable {
private boolean _stop;
public Runner() { _stop = false; }
private volatile boolean _stop;
public Runner() {}
public void stop() { _stop = true; }
public void run() {
if (_log.shouldLog(Log.INFO)) _log.info("Starting writer");
NTCPConnection con = null;