Fix removeReceiveHandler to not incorrectly reset the receiveThread

This commit is contained in:
AsamK 2021-11-08 14:43:57 +01:00
parent 5dd602614c
commit e495afcff5

View file

@ -956,12 +956,12 @@ public class ManagerImpl implements Manager {
public void removeReceiveHandler(final ReceiveMessageHandler handler) {
final Thread thread;
synchronized (messageHandlers) {
thread = receiveThread;
receiveThread = null;
messageHandlers.remove(handler);
if (!messageHandlers.isEmpty() || isReceivingSynchronous) {
return;
}
thread = receiveThread;
receiveThread = null;
}
stopReceiveThread(thread);