resolve server shutdown issues

merge-requests/1/head
ayyoob 9 years ago
parent 7b4db0bc39
commit 2a6e42b646

@ -114,8 +114,20 @@ public class MQTTEventAdapter implements InputEventAdapter {
@Override @Override
public void disconnect() { public void disconnect() {
if (mqttAdapterListener != null) { //when mqtt and this feature both together then this method becomes a blocking method, Therefore
mqttAdapterListener.stopListener(eventAdapterConfiguration.getName()); // have used a thread to skip it.
try {
Thread thread = new Thread(new Runnable() {
public void run() {
if (mqttAdapterListener != null) {
mqttAdapterListener.stopListener(eventAdapterConfiguration.getName());
}
}
});
thread.start();
thread.join(2000);
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
} }
} }

Loading…
Cancel
Save