strolch-plc/strolch-plc-model/src/main/java/li/strolch/plc/model/PlcNotificationListener.java

9 lines
174 B
Java
Raw Normal View History

package li.strolch.plc.model;
public interface PlcNotificationListener {
void handleNotification(PlcAddressKey addressKey, Object value);
void handleConnectionLost();
}