Skip to content

Latest commit

 

History

History
46 lines (27 loc) · 1.47 KB

README.adoc

File metadata and controls

46 lines (27 loc) · 1.47 KB

Vert.x MQTT examples

Here you will find examples demonstrating Vert.x MQTT server and client in action.

Vert.x MQTT provides a server which is able to handle connections, communication and messages exchange with remote MQTT clients.

Vert.x MQTT provides also a client.

Please consult the Vert.x MQTT documentation for more information.

Examples can be run directly from the IDE by executing the main method.

Dependencies required

To use Vert.x MQTT Server or Client in your own Maven or Gradle project add the following dependency

Group ID: io.vertx
Artifact ID: vertx-mqtt

MQTT examples

These examples demonstrate usage of Vert.x MQTT servers and clients.

Simple

This example consists of a simple server verticle which serves MQTT connections, and simply echoes back whatever it receives.

App

In this example you can find a usage of significant part of both of Client and Server API

SSL

This is the same as the Simple example but using SSL to encrypt connections