cache replication now has its own interface

This commit is contained in:
hns 2001-07-29 20:10:13 +00:00
parent 285bc06a7f
commit 50b69b6958

View file

@ -29,7 +29,7 @@ import java.util.StringTokenizer;
* requests from the Web server or XML-RPC port and dispatches them to * requests from the Web server or XML-RPC port and dispatches them to
* the evaluators. * the evaluators.
*/ */
public class Application extends UnicastRemoteObject implements IRemoteApp, Runnable { public class Application extends UnicastRemoteObject implements IRemoteApp, IReplicatedApp, Runnable {
private String name; private String name;
SystemProperties props, dbProps; SystemProperties props, dbProps;
@ -326,6 +326,7 @@ public class Application extends UnicastRemoteObject implements IRemoteApp, Runn
nmgr.replicateCache (add, delete); nmgr.replicateCache (add, delete);
} }
public void ping () { public void ping () {
// do nothing // do nothing
} }