API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.rmi.server. RemoteCall View Source
Author(s)
Ann Wollrath
Roger Riggs
Since
JDK1.1
Version
1.21, 07/17/06
Serial
Hierarchy
 RemoteCall
Subinterfaces
Description
@Deprecated
public interface RemoteCall
  RemoteCall is an abstraction used solely by the RMI runtime (in conjunction with stubs and skeletons of remote objects) to carry out a call to a remote object.
See also:    RemoteRef
Methods
Hide/Show inherited methods
@Deprecated
public void done () throws IOException
  Allow cleanup after the remote call has completed.
@Deprecated
public void executeCall () throws Exception
  Do whatever it takes to execute the call.
@Deprecated
public ObjectInput getInputStream () throws IOException
  Get the InputStream that the stub/skeleton should get results/arguments from.
@Deprecated
public ObjectOutput getOutputStream () throws IOException
  Return the output stream the stub/skeleton should put arguments/results into.
@Deprecated
public ObjectOutput getResultStream (boolean success) throws IOException StreamCorruptedException
  Returns an output stream (may put out header information relating to the success of the call).
@Deprecated
public void releaseInputStream () throws IOException
  Release the input stream.
@Deprecated
public void releaseOutputStream () throws IOException
  Release the output stream; in some transports this would release the stream.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar