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. The RemoteCall interface is
deprecated in the Java 2 platform since it is only used by deprecated methods of
java.rmi.server.RemoteRef.
RemoteRef
| Method Summary | |
void |
done()
copy-> .done()copy-> <RemoteCall>.done();
|
void |
executeCall()
copy-> .executeCall()copy-> <RemoteCall>.executeCall();
|
ObjectInput |
getInputStream()
copy-> .getInputStream()copy-> <ObjectInput var>=<RemoteCall>.getInputStream();
|
ObjectOutput |
getOutputStream()
copy-> .getOutputStream()copy-> <ObjectOutput var>=<RemoteCall>.getOutputStream();
|
ObjectOutput |
getResultStream(boolean success)
copy-> .getResultStream( )copy-> <ObjectOutput var>=<RemoteCall>.getResultStream(<boolean success>);
|
void |
releaseInputStream()
copy-> .releaseInputStream()copy-> <RemoteCall>.releaseInputStream();
|
void |
releaseOutputStream()
copy-> .releaseOutputStream()copy-> <RemoteCall>.releaseOutputStream();
|