- messageArrived(String, MqttMessage) - Method in interface org.eclipse.paho.client.mqttv3.MqttCallback
-
This method is called when a message arrives from the server.
- MQTT - Static variable in class org.eclipse.paho.client.mqttv3.MqttClient
-
The "MQTT" String constant.
- MQTT_QOS0 - Static variable in class org.eclipse.paho.client.mqttv3.MqttClient
-
MQTT QoS 0.
- MQTT_QOS1 - Static variable in class org.eclipse.paho.client.mqttv3.MqttClient
-
MQTT QoS 1.
- MQTT_VERSION_3_1_1 - Static variable in class org.eclipse.paho.client.mqttv3.MqttConnectOptions
-
Mqtt Version 3.1.1.
- MqttCallback - Interface in org.eclipse.paho.client.mqttv3
-
Enables an application to be notified when asynchronous events related to the client occur.
- MqttClient - Class in org.eclipse.paho.client.mqttv3
-
Lightweight client for talking to an MQTT server using methods that block until an operation completes.
- MqttClient(String, String) - Constructor for class org.eclipse.paho.client.mqttv3.MqttClient
-
Create an MqttClient that can be used to communicate with an MQTT server.
- MqttConnectOptions - Class in org.eclipse.paho.client.mqttv3
-
Holds the set of options that control how the client connects to a server.
- MqttConnectOptions() - Constructor for class org.eclipse.paho.client.mqttv3.MqttConnectOptions
-
Constructs a new MqttConnectOptions
object using the default values.
- MqttException - Exception in org.eclipse.paho.client.mqttv3
-
Thrown if an error occurs communicating with the server.
- MqttException(int) - Constructor for exception org.eclipse.paho.client.mqttv3.MqttException
-
Constructs a new MqttException
with the specified code as the underlying reason.
- MqttException(Throwable) - Constructor for exception org.eclipse.paho.client.mqttv3.MqttException
-
Constructs a new MqttException
with the specified Throwable
as the underlying reason.
- MqttException(int, Throwable) - Constructor for exception org.eclipse.paho.client.mqttv3.MqttException
-
Constructs a new MqttException
with the specified Throwable
as the underlying reason.
- MqttMessage - Class in org.eclipse.paho.client.mqttv3
-
An MQTT message holds the application payload and options specifying how the message is to be delivered The message
includes a "payload" (the body of the message) represented as a byte[].
- MqttMessage() - Constructor for class org.eclipse.paho.client.mqttv3.MqttMessage
-
Constructs a message with an empty payload, and all other values set to defaults.
- MqttMessage(byte[]) - Constructor for class org.eclipse.paho.client.mqttv3.MqttMessage
-
Constructs a message with the specified byte array as a payload, and all other values set to defaults.