Update of /cvsroot/pyxida/Pyxida/src/edu/harvard/syrah/pyxida/api
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4681/src/edu/harvard/syrah/pyxida/api
Modified Files:
XMLRPC_API.java
Log Message:
added hooks to XMLRPC
Index: XMLRPC_API.java
===================================================================
RCS file: /cvsroot/pyxida/Pyxida/src/edu/harvard/syrah/pyxida/api/XMLRPC_API.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** XMLRPC_API.java 28 Nov 2006 18:49:34 -0000 1.1
--- XMLRPC_API.java 30 Nov 2006 17:28:17 -0000 1.2
***************
*** 36,47 ****
}
! public void estimateRTT(String nodeA, AddressIF nodeB, CB1<Double> cbLatency) {
! // TODO Auto-generated method stub
!
}
! public Coordinate getCoord(String node) {
! // TODO Auto-generated method stub
! return null;
}
--- 36,49 ----
}
! public void estimateRTT(AddressIF nodeA, AddressIF nodeB, CB1<Double> cbDistance) {
! ncManager.estimateRTT(nodeA, nodeB, cbDistance);
}
! public Coordinate getLocalCoord() {
! return ncManager.getLocalCoord();
! }
!
! public Coordinate getLocalError() {
! return ncManager.getLocalError();
}
|