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

it.netgrid.bauer.impl.MqttMessageConsumer Maven / Gradle / Ivy

Go to download

A Bauer binder for MQTT supporting also $share and $retain topics. It is based on the PAHO MQTT library.

There is a newer version: 1.1.5
Show newest version
package it.netgrid.bauer.impl;

import java.io.IOException;

import org.eclipse.paho.mqttv5.common.MqttMessage;
import org.eclipse.paho.mqttv5.common.MqttSubscription;

public interface MqttMessageConsumer extends Runnable {
    public boolean consume(String topic, MqttMessage message) throws IOException;
    public MqttSubscription getMqttSubscription();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy