From 03760895810967c04d559caefe8e257855c43f7c Mon Sep 17 00:00:00 2001 From: Dean Wette Date: Thu, 14 Dec 2023 11:49:42 -0600 Subject: [PATCH] Add links to guides for Micronaut MQTT --- src/main/docs/guide/quickStart.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/docs/guide/quickStart.adoc b/src/main/docs/guide/quickStart.adoc index c6d1f818..9659c0d8 100644 --- a/src/main/docs/guide/quickStart.adoc +++ b/src/main/docs/guide/quickStart.adoc @@ -1,3 +1,6 @@ To add support for MQTT to an existing project, you must first add either the <> or the Micronaut MQTT Eclipse Paho <> or <> (depending on the version of MQTT you require) to your build. IMPORTANT: If you are running into the exception `org.eclipse.paho.client.mqttv3.MqttException: Timed out waiting for a response from the server`, please make sure to run your program on a machine with *more than one core*. The Eclipse Paho MQTT client will run into connection timeouts if it has only one core available. + + +TIP: See the guide for https://guides.micronaut.io/latest/tag-mqtt.html[Publishing and Subscribing to MQTT Topics from a Micronaut Application] to learn more.