strolch-plc/plc-gw-server/src/main/java/li/strolch/plc/gw/server/PlcNotificationListener.java

13 lines
262 B
Java

package li.strolch.plc.gw.server;
import li.strolch.plc.model.PlcAddressKey;
public interface PlcNotificationListener {
void handleNotification(PlcAddressKey addressKey, Object value) throws Exception;
default void handleConnectionLost() {
// no-op
}
}