1 6 7 package SOFA.SOFAnet.Search.RMI; 8 9 import java.rmi.Remote ; 10 import java.rmi.RemoteException ; 11 import SOFA.SOFAnet.Search.*; 12 import SOFA.SOFAnet.Repository.ShareGroups; 13 14 18 public interface RMISearchInterface extends Remote 19 { 20 void connect(String nodeName, ShareGroups shareGroups) throws RMISearchException, RemoteException ; 21 void request(String nodeName, SearchRequestID requestID, SearchPattern searchPattern, boolean firstOnly, String shareGroup) throws RMISearchException, RemoteException ; 22 void reply(String nodeName, SearchReply searchReply) throws RMISearchException, RemoteException ; 23 } 24 | Popular Tags |