home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / java / rmi / server / RemoteCall.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  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.