01: package com.knowgate.cache.server;
02:
03: import java.rmi.RemoteException;
04:
05: public interface DistributedCacheCoordinator extends
06: javax.ejb.EJBObject {
07: public long now() throws RemoteException;
08:
09: public long lastModified(String sKey) throws RemoteException;
10:
11: public long modify(String sKey) throws RemoteException;
12:
13: public void expire(String sKey) throws RemoteException;
14:
15: public void flush() throws RemoteException;
16: }
|