Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public abstract interface RemoteCall {
   // Public Instance Methods
      public abstract void done() throws IOException;
      public abstract void executeCall() throws Exception;
      public abstract ObjectInput getInputStream() throws IOException;
      public abstract ObjectOutput getOutputStream() throws IOException;
      public abstract ObjectOutput getResultStream(boolean success) throws IOException, StreamCorruptedException;
      public abstract void releaseInputStream() throws IOException;
      public abstract void releaseOutputStream() throws IOException;
}