1 7 8 package java.rmi.server; 9 import java.rmi.*; 10 import java.io.ObjectOutput ; 11 import java.io.ObjectInput ; 12 import java.io.StreamCorruptedException ; 13 import java.io.IOException ; 14 15 29 @Deprecated 30 public interface RemoteCall { 31 32 41 @Deprecated 42 ObjectOutput getOutputStream() throws IOException ; 43 44 52 @Deprecated 53 void releaseOutputStream() throws IOException ; 54 55 64 @Deprecated 65 ObjectInput getInputStream() throws IOException ; 66 67 68 76 @Deprecated 77 void releaseInputStream() throws IOException ; 78 79 92 @Deprecated 93 ObjectOutput getResultStream(boolean success) throws IOException , 94 StreamCorruptedException ; 95 96 103 @Deprecated 104 void executeCall() throws Exception ; 105 106 113 @Deprecated 114 void done() throws IOException ; 115 } 116 | Popular Tags |