1 6 7 package org.jfox.ioc.connector; 8 9 import java.rmi.Remote ; 10 import java.rmi.RemoteException ; 11 12 17 18 public interface ConnectorRemote extends Remote { 19 27 Object invoke(Invocation invocation) throws RemoteException , Exception ; 28 29 34 void ping() throws RemoteException ; 35 36 String getProtocol() throws RemoteException ; 37 38 } 39 | Popular Tags |