it.wldt.adapter.mqtt.physical.topic.outgoing.MqttPublishFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mqtt-physical-adapter Show documentation
Show all versions of mqtt-physical-adapter Show documentation
Physical adapter to connect with the MQTT protocol
The newest version!
package it.wldt.adapter.mqtt.physical.topic.outgoing;
import it.wldt.adapter.physical.event.PhysicalAssetActionWldtEvent;
import java.util.function.Function;
/**
* Represents a function for publishing MQTT messages in the context of a Digital Twin.
* This interface extends the Java Function interface, specifying the input type as
* PhysicalAssetActionWldtEvent and the output type as String.
*
* @author Marco Picone, Ph.D. - [email protected], Marta Spadoni University of Bologna
*/
public interface MqttPublishFunction extends Function, String> {
}