it.netgrid.bauer.impl.MqttClientManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bauer-mqtt Show documentation
Show all versions of bauer-mqtt Show documentation
A Bauer binder for MQTT supporting also $share and $retain topics. It is based on the PAHO MQTT library.
The newest version!
package it.netgrid.bauer.impl;
import java.io.IOException;
import org.eclipse.paho.mqttv5.client.MqttCallback;
import org.eclipse.paho.mqttv5.common.MqttMessage;
public interface MqttClientManager extends MqttCallback {
public void safeFirstConnection();
public boolean isFirstConnectionCompleted();
public void publish(String topic, MqttMessage message) throws IOException;
public void addConsumer(MqttMessageConsumer consumer) throws IOException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy