Java in a Nutshell Online Quick Reference for Java 1.1

INTERFACE java.rmi.server.RemoteCall

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;
}
Passed To:
RemoteRef.done(), RemoteRef.invoke(), Skeleton.dispatch().
Returned By:
RemoteRef.newCall().

Java in a Nutshell Online Quick Reference for Java 1.1
Created by David Flanagan. Copyright © 1997 by O'Reilly & Associates.