| public interface java.rmi.server RemoteCall
|
Java SE 6 |
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 because it is only used by deprecated methods of
java.rmi.server.RemoteRef.
| version | 1.21, 07/17/06 |
| since | JDK1.1 |
| deprecated | no replacement. |
| See also | java.rmi.server.RemoteRef |
| Methods | |||||||
|---|---|---|---|---|---|---|---|
| public void | done() throws IOException Details
Allow cleanup after the remote call has completed.
| ||||||
| public void | executeCall() throws Exception Details
Do whatever it takes to execute the call.
| ||||||
| public void | releaseInputStream() throws IOException Details
Release the input stream. This would allow some transports to release
the channel early.
| ||||||
| public void | releaseOutputStream() throws IOException Details
Release the output stream; in some transports this would release
the stream.
| ||||||
| Properties | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| public ObjectInput | getInputStream() throws IOException Details
Get the InputStream that the stub/skeleton should get
results/arguments from.
| ||||||||||||
| public ObjectOutput | getOutputStream() throws IOException Details
Return the output stream the stub/skeleton should put arguments/results
into.
| ||||||||||||
| public ObjectOutput | getResultStream(boolean success) throws IOException, StreamCorruptedException Details
Returns an output stream (may put out header information
relating to the success of the call). Should only succeed
once per remote call.
| ||||||||||||
| About DocWeb · Bundles · Export · Export All | Top 10 · Statistics · Login |
| About Sun · Contact · Privacy · Terms of Use · Trademarks | Java SE 6 · Copyright © 1994-2013 Sun Microsystems, Inc.All rights reserved. Use is subject to license terms |
![]() |
![]() |
|