1
0
This repository has been archived on 2024-01-25. You can view files and clone it, but cannot push or open issues or pull requests.

32 lines
652 B
Java
Raw Normal View History

package ch.hevs.isi.web;
import ch.hevs.isi.core.DataPoint;
import ch.hevs.isi.core.DataPointListener;
public class WebConnector implements DataPointListener {
private static WebConnector mySelf = null;
private WebConnector (){
}
public static WebConnector getMySelf(){
if (mySelf == null){
mySelf = new WebConnector();
}
return mySelf;
}
public void initialize(String host, int port){
}
private void pushToWeb(DataPoint dp){
2023-05-05 16:26:16 +02:00
System.out.println(dp.toString() + " -> Web");
}
@Override
public void onNewValue(DataPoint dp) {
pushToWeb(dp);
}
}