Commit 06e1f2c2 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Shutdown thread pool when shutting down reader.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@4998 b35dd754-fafc-0310-a699-88a17e54d16e
parent 7005cb5b
......@@ -183,6 +183,13 @@ public class ConnectionMultiplexerSocketReader extends SocketReader {
return false;
}
protected void shutdown() {
super.shutdown();
// Shutdown the pool of threads that are processing packets sent by
// the remote server
threadPool.shutdown();
}
String getName() {
return "ConnectionMultiplexer SR - " + hashCode();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment