1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-22 08:52:18 -05:00

PircBot: Gracefully handle disposing of the PircBot before I/O threads are started

This commit is contained in:
Steven Luo 2011-06-29 01:18:39 -07:00 committed by Sebastian Kaspari
parent ae871f8a1f
commit a69fafc4dd

View File

@ -2983,9 +2983,13 @@ public abstract class PircBot implements ReplyConstants {
*/
public synchronized void dispose() {
//System.out.println("disposing...");
if (_outputThread != null) {
_outputThread.interrupt();
}
if (_inputThread != null) {
_inputThread.dispose();
}
}
/**