32 lines
653 B
Java
32 lines
653 B
Java
|
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){
|
||
|
System.out.println("To Web: " + dp.toString());
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onNewValue(DataPoint dp) {
|
||
|
pushToWeb(dp);
|
||
|
}
|
||
|
}
|