|
Components |
|
| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface RemoteObjectExporterInterface
Interface designating methods associated with exporting/unexporting a remote object to the RMI system. Exporting a remote object to the RMI system makes it available to service incoming calls.
export
a remote objectunexport
an exported remote objectexported
get the exported remote object's stub
Method Summary | |
---|---|
java.rmi.Remote |
exportObject()
Exports the remotable object to the RMI system. |
java.rmi.Remote |
getExportedRemoteObjectStub()
Gets the remote object's stub that has been exported to the RMI system. |
boolean |
isExported()
Determines whether a remote object is currently exported to the RMI system. |
boolean |
unexportObject()
Removes the remote object from the RMI runtime. |
Method Detail |
---|
java.rmi.Remote exportObject() throws java.rmi.RemoteException
Use unexportObject()
to remove a remote object from the RMI system when it is no
longer needed.
null
.
java.rmi.RemoteException
- if unable to export a remote object to the RMI system.unexportObject()
,
isExported()
,
getExportedRemoteObjectStub()
boolean unexportObject() throws java.rmi.NoSuchObjectException
This method may be called to unexport a remote object which has been previously exported to
the RMI system using exportObject()
.
true
if the remote object was successfully removed from the RMI system.
java.rmi.NoSuchObjectException
- if unable to unexport the remotable object because the remote
object is not currently exported to the RMI system.exportObject()
,
isExported()
boolean isExported()
Use getExportedRemoteObjectStub()
to obtain the remote object which has been
exported to the RMI system if this method returns true
.
This method may also be used by resource cleanup logic to determine whether a remote object has been exported and needs to be unexported from the RMI system.
true
if the remotable object is currently exported.exportObject()
,
unexportObject()
,
getExportedRemoteObjectStub()
java.rmi.Remote getExportedRemoteObjectStub()
Use isExported()
to determine whether a remote object is currently exported to the
RMI system.
null
if a remote object is not currently
exported.exportObject()
,
isExported()
|
Components |
|
| |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |