Skip to content

Commit 6c8192e

Browse files
author
terrypacker
committed
New listener method as per MangoAutomation/ma-core-public#870
1 parent f021a5c commit 6c8192e

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

Mango API/src/com/serotonin/m2m2/web/mvc/rest/v1/publisher/pointValue/PointValueWebSocketPublisher.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,5 +341,11 @@ public WebSocketSession getSession(){
341341
return this.session;
342342
}
343343

344-
344+
/* (non-Javadoc)
345+
* @see com.serotonin.m2m2.rt.dataImage.DataPointListener#pointLogged(com.serotonin.m2m2.rt.dataImage.PointValueTime)
346+
*/
347+
@Override
348+
public void pointLogged(PointValueTime value) {
349+
//Do nothing for now
350+
}
345351
}

PointLinks/src/com/serotonin/m2m2/pointLinks/PointLinkRT.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,4 +263,9 @@ public void pointSetComplete() {
263263
public static File getLogFile(int pointId) {
264264
return new File(Common.getLogsDir(), "pointLink-" + pointId + ".log");
265265
}
266+
267+
@Override
268+
public void pointLogged(PointValueTime value) {
269+
//Nothing
270+
}
266271
}

0 commit comments

Comments
 (0)