1 package com.knowgate.cache.server; 2 3 import java.rmi.RemoteException ; 4 5 public interface DistributedCacheCoordinator extends javax.ejb.EJBObject { 6 public long now() throws RemoteException ; 7 public long lastModified(String sKey) throws RemoteException ; 8 public long modify(String sKey) throws RemoteException ; 9 public void expire(String sKey) throws RemoteException ; 10 public void flush() throws RemoteException ; 11 } | Popular Tags |