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

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

package it.netgrid.bauer.impl;

import java.io.IOException;

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

public interface MqttMessageFactory {
    public  E getEvent(MqttMessage message, Class eventClass) throws IOException;
    public  MqttMessage getMqttMessage(E event) throws IOException;
    public  MqttMessage getMqttMessage(E event, boolean retain) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy