1 7 8 package java.rmi.server; 9 10 import java.rmi.*; 11 12 22 public interface RemoteRef extends java.io.Externalizable { 23 24 25 static final long serialVersionUID = 3632638527362204081L; 26 27 33 final static String packagePrefix = "sun.rmi.server"; 34 35 57 Object invoke(Remote obj, 58 java.lang.reflect.Method method, 59 Object [] params, 60 long opnum) 61 throws Exception ; 62 63 87 @Deprecated 88 RemoteCall newCall(RemoteObject obj, Operation [] op, int opnum, long hash) 89 throws RemoteException; 90 91 113 @Deprecated 114 void invoke(RemoteCall call) throws Exception ; 115 116 134 @Deprecated 135 void done(RemoteCall call) throws RemoteException; 136 137 145 String getRefClass(java.io.ObjectOutput out); 146 147 156 int remoteHashCode(); 157 158 168 boolean remoteEquals(RemoteRef obj); 169 170 176 String remoteToString(); 177 178 } 179 | Popular Tags |