paho.mqtt.java
paho.mqtt.java copied to clipboard
Eclipse Paho Java MQTT client library. Paho is an Eclipse IoT project.
while (!isRunning()) { try { Thread.sleep(100); } catch (Exception e) { } } 如果重连断开的次数过多,最终造成CommsCallback线程无限增长的状况。 stack log: "MQTT Con: collector-5aab5013" #5913 daemon prio=5 os_prio=0 tid=0x9e9f3000 nid=0x229b waiting on condition [0x86f6e000] java.lang.Thread.State:...
@rdasgupt
Please make sure that the following boxes are checked before submitting your Pull Request, thank you! - [X] This change is against the develop branch, **not** master. - [X] You...
``` java.lang.StackOverflowError at org.eclipse.paho.mqttv5.client.MqttClient.subscribe(MqttClient.java:525) at org.eclipse.paho.mqttv5.client.MqttClient.subscribe(MqttClient.java:525) at org.eclipse.paho.mqttv5.client.MqttClient.subscribe(MqttClient.java:525) at org.eclipse.paho.mqttv5.client.MqttClient.subscribe(MqttClient.java:525) at org.eclipse.paho.mqttv5.client.MqttClient.subscribe(MqttClient.java:525) at org.eclipse.paho.mqttv5.client.MqttClient.subscribe(MqttClient.java:525) ``` - [*] Bug exists Release Version 1.2.5 ( Master Branch)
while (!isRunning()) { try { Thread.sleep(100); } catch (Exception e) { } } 如果重连断开的次数过多,最终造成CommsCallback线程无限增长的状况。
Please fill out the form below before submitting, thank you! - [x] Bug exists Release Version 1.2.5 ( Master Branch) - [ ] Bug exists in MQTTv3 Client on Snapshot...
i used org.eclipse.paho.client.mqttv3[1.2.5] about QoS 2 transmission action explain https://www.emqx.com/en/blog/introduction-to-mqtt-qos it seems like after the client received PUBREC it will delete the message, but the [eclipse.paho qos] source code does...
We found a MqttAsyncClient needs almost 350ms to complete its connection, intuitively, a connection itself should not take so much time... Then we noticed this may be caused by the...
I would like to send a message when the client connects to the broker. I added an IMqttActionListener to the connect parameters. About half the time. it works, the other...
When I attempt to connect with the incorrect password using ws:// or wss:// schemes, I get "Already connected" exception. Using tcp:// or ssl:// results in "Not authorized to connect (5)",...