hivemq-mqtt-client
hivemq-mqtt-client copied to clipboard
HiveMQ MQTT Client is an MQTT 5.0 and MQTT 3.1.1 compatible and feature-rich high-performance Java client library with different API flavours and backpressure support
## Expected behavior Subscribing should be possible before connecting the client - as described in https://github.com/hivemq/hivemq-mqtt-client/issues/521. ## Actual behavior Subscribing before connecting blocks forever. ## To Reproduce ### Steps 1....
## Expected behavior I would expect a client variable to reflect the host/port currently connected to after a reconnect. ## Actual behavior However, after a reconnect, where the host and...
## Expected behavior MQTT works normally on release builds by following the android guide: https://hivemq.github.io/hivemq-mqtt-client/docs/installation/android/ ## Actual behavior On debug builds the client works fine, but on release builds we...
## Expected behavior If I follow the guide for supporting Android API below 24 here: https://hivemq.github.io/hivemq-mqtt-client/docs/installation/android/#android-api-levels-below-24 then using the mqtt client crashes at run time: `java.lang.NoSuchMethodError: No interface method ...`...
## Expected behavior Connect to the broker ## Actual behavior I use the same steps described in this page [https://www.hivemq.com/blog/mqtt-client-library-enyclopedia-paho-android-service/](url), but the application crashes once the connect button clicked. ##...
I added this as a comment to https://github.com/hivemq/hivemq-mqtt-client/issues/346, but since it's closed, I'll open a specific issue. I have a scenario where I use a local MQTT server while my...
## Expected behavior With the automatic reconnect the HiveMQ client will also resubscribe if the session was not present (MqttClientReconnector.DEFAULT_RESUBSCRIBE_IF_SESSION_EXPIRED = true). ## Actual behavior The problem is that if...
## Problem or use case As in accordance with the spec the client omits the User Properties(UP) if adding them would increase the packet size over the allowed limit set...
Hi everyone, we are using HiveMQ MQTT Client on our Android mobile devices quite extensively, and we noticed that a significant number of publishes from clients is failing with: `Mqtt5PubRecException:...
here is my code: ` Mqtt5Client client=Mqtt5Client.builder() .identifier("clientId") // use a unique identifier .serverHost("127.0.0.1") // use the HiveMQ broker .serverPort(1883) .automaticReconnectWithDefaultConfig() // the client automatically reconnects .build(); client.toBlocking().connectWith() .cleanStart(false) .willPublish(null)...