home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / rmi / server / RemoteCall.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  608 b   |  23 lines

  1. package java.rmi.server;
  2.  
  3. import java.io.IOException;
  4. import java.io.ObjectInput;
  5. import java.io.ObjectOutput;
  6. import java.io.StreamCorruptedException;
  7.  
  8. public interface RemoteCall {
  9.    ObjectOutput getOutputStream() throws IOException;
  10.  
  11.    void releaseOutputStream() throws IOException;
  12.  
  13.    ObjectInput getInputStream() throws IOException;
  14.  
  15.    void releaseInputStream() throws IOException;
  16.  
  17.    ObjectOutput getResultStream(boolean var1) throws IOException, StreamCorruptedException;
  18.  
  19.    void executeCall() throws Exception;
  20.  
  21.    void done() throws IOException;
  22. }
  23.