home *** CD-ROM | disk | FTP | other *** search
- package java.rmi.server;
-
- import java.io.IOException;
- import java.io.ObjectInput;
- import java.io.ObjectOutput;
- import java.io.StreamCorruptedException;
-
- public interface RemoteCall {
- ObjectOutput getOutputStream() throws IOException;
-
- void releaseOutputStream() throws IOException;
-
- ObjectInput getInputStream() throws IOException;
-
- void releaseInputStream() throws IOException;
-
- ObjectOutput getResultStream(boolean var1) throws IOException, StreamCorruptedException;
-
- void executeCall() throws Exception;
-
- void done() throws IOException;
- }
-