cache replication now has its own interface
This commit is contained in:
parent
285bc06a7f
commit
50b69b6958
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue