it.wldt.adapter.mqtt.physical.topic.incoming.MqttSubscribeFunction 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.incoming;
import it.wldt.core.event.WldtEvent;
import java.util.List;
import java.util.function.Function;
@FunctionalInterface
/**
* Represents a function that accepts a message published on topic (of type String) and when applied, produces a WldtEvent.
*
* @author Marco Picone, Ph.D. - [email protected], Marta Spadoni University of Bologna
* */
public interface MqttSubscribeFunction extends Function>> {
}