vertx-mqtt icon indicating copy to clipboard operation
vertx-mqtt copied to clipboard

Vert.x MQTT

Results 50 vertx-mqtt issues
Sort by recently updated
recently updated
newest added

Take a look at the example of **ruby/js/kotlin/groovy** MQTT client usage code at documentation. During the `compile` maven goal execution such error occurs when generating sources for **ruby/js/kotlin/groovy**: ```log Cannot...

Under some conditions (connections breaking up with multiple clients) I do receive the following log messages: ``` 10:21:41.572 [globalEventExecutor-1-7] WARN i.n.util.concurrent.DefaultPromise - An exception was thrown by io.vertx.core.net.impl.ChannelProvider$$Lambda$152/1354547765.operationComplete() java.lang.IllegalStateException: Uh...

The client should be able to persist the "in flight" messages queues (QoS 1 and 2) in order to recover them after coming back online (due to a previous disconnection).

enhancement

It's useful to have logging in the main parts of the server mainly printing messages which are sent and received by the server itself.

enhancement

It would be great to have vertx-mqtt-server supporting WebSockets. Are there plans to add WebSocket support in the near future? Is it a difficult task?

I am running into the following issue: I am using the following simple MQTT-Verticle ``` public class MqttVerticle extends AbstractVerticle{ @Override public void start() throws Exception { Integer port =...

We are implementing a server app based on vertx-mqtt-server. We would like to have a possibility of defining global idle timeout for incoming connections. There already is setIdleTimeout method inherited...

``` 023-06-07T05:08:10.5963841Z testPermessageDeflate(io.vertx.mqtt.test.server.MqttServerWebSocketPermessageDeflateTest) Time elapsed: 0.064 sec

bug

Motivation: At the moment of writing, the vertx-mqtt supports all MQTT version 5.0 features except AUTH message which is yet to be implemented. Now I used it to develop my...