| |
|
| java.lang.Object org.apache.harmony.rmi.client.ClientRemoteCall
ClientRemoteCall | public class ClientRemoteCall implements RemoteCall,RMIProtocolConstants(Code) | | RemoteCall implementation used by UnicastRef on client's side.
author: Mikhail A. Markov version: $Revision: 1.1.2.2 $ |
ClientRemoteCall | public ClientRemoteCall(ClientConnection conn)(Code) | | Constructs ClientRemoteCall from existing connection.
Parameters: conn - opened ClientConnection |
close | public void close()(Code) | | Closes connection/this remote call.
|
executeCall | public void executeCall() throws Exception(Code) | | See Also: RemoteCall.executeCall() |
getInputStream | public ObjectInput getInputStream() throws IOException(Code) | | Constructs ObjectInputStream (if it was not created yet) and returns
this created stream.
ObjectInputStream to read objects from throws: IOException - if an I/O error occurred during stream construction |
getOutputStream | public ObjectOutput getOutputStream() throws IOException(Code) | | Constructs ObjectOutputStream (if it was not created yet) and returns
this created stream.
ObjectOutputStream to write objects to throws: IOException - if an I/O error occurred during stream construction |
releaseInputStream | public void releaseInputStream() throws IOException(Code) | | See Also: RemoteCall.releaseInputStream() |
releaseOutputStream | public void releaseOutputStream() throws IOException(Code) | | See Also: RemoteCall.releaseOutputStream() |
setMethod | public void setMethod(Method m)(Code) | | Sets the method for this RemoteCall to the given value.
This value will be used later for throwing UnexpectedException.
Parameters: m - Method this call was created for |
toString | public String toString()(Code) | | Returns string representation of this RemoteCall.
string representation of this RemoteCall |
|
|
|