Example usage for Java java.rmi.server UnicastRemoteObject fields, constructors, methods, implement or subclass
The text is from its open source code.
Remote | exportObject(Remote obj, int port) Exports the remote object to make it available to receive incoming calls, using the particular supplied port. |
Remote | exportObject(Remote obj, UnicastServerRef sref) Exports the specified object using the specified server ref. |
RemoteStub | exportObject(Remote obj) Exports the remote object to make it available to receive incoming calls using an anonymous port. |
Remote | exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) Exports the remote object to make it available to receive incoming calls, using a transport specified by the given socket factory. |
boolean | unexportObject(Remote obj, boolean force) Removes the remote object, obj, from the RMI runtime. |