All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fusesource.mqtt.client.MQTTException Maven / Gradle / Ivy

Go to download

mqtt-client provides an ASL 2.0 licensed API to MQTT. It takes care of automatically reconnecting to your MQTT server and restoring your client session if any network failures occur. Applications can use a blocking API style, a futures based API, or a callback/continuations passing API style.

The newest version!
package org.fusesource.mqtt.client;

import java.io.IOException;

import org.fusesource.mqtt.codec.CONNACK;

public class MQTTException extends IOException {
  public final CONNACK connack;

  public MQTTException(String msg, CONNACK connack) {
    super(msg);
    this.connack = connack;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy