Uses of Class
gnu.cajo.invoke.Remote
-
Packages that use Remote Package Description gnu.cajo.invoke This package is the foundation for completely transparent local/remote inter-VM communication.gnu.cajo.utils A set of common utilities used by either proxy, or server items.gnu.cajo.utils.extra A set of optional classes, providing insights on potentially standard ways to extend and use the framework. -
-
Uses of Remote in gnu.cajo.invoke
Methods in gnu.cajo.invoke that return Remote Modifier and Type Method Description Remote
Remote. clientScope()
This method controls the automatic-unexporting of a remote reference when it is no longer referenced by any clients. -
Uses of Remote in gnu.cajo.utils
Fields in gnu.cajo.utils declared as Remote Modifier and Type Field Description protected Remote
BaseProxy. remoteThis
A remote reference to the proxy itself, which it can send to its server, or other remote VMs on which they can asynchronously callback.Methods in gnu.cajo.utils that return Remote Modifier and Type Method Description static Remote
ItemServer. bind(java.lang.Object item, java.lang.String name)
This method remotes the provided object in the local rmiregistry.static Remote
ItemServer. bind(java.lang.Object item, java.lang.String name, java.lang.Object proxy)
This method is used to bind a proxy serving object in the defalut local registry.static Remote
ItemServer. bind(java.lang.Object item, java.lang.String name, java.lang.Object proxy, java.rmi.server.RMIServerSocketFactory ssf, java.rmi.server.RMIClientSocketFactory csf, int port)
This method is used to bind a proxy serving object with complete configurability.static Remote
ItemServer. bind(java.lang.String name, java.lang.String item, java.lang.String file)
This method is used to bind a server object, contained in its own jar file into this server's VM, for binding at runtime.Remote
BaseItem. getItem(java.lang.String url)
A method will load either an object, or a zipped marshalled object (zedmob) of an object, from a URL, file, or from a remote rmiregistry.Remote
BaseProxy. getItem(java.lang.String url)
A method will load either an object, or a zipped marshalled object (zedmob) of an object, from a URL, file, or from a remote rmiregistry.Remote
BaseItem. installProxy(java.lang.Object proxy)
This remotely invokable method is called by remote clients to install their proxies in this VM.Methods in gnu.cajo.utils with parameters of type Remote Modifier and Type Method Description java.awt.Container
BaseProxy. init(Remote remoteRef)
This function is called by the hosting client on upon the proxy's arrival. -
Uses of Remote in gnu.cajo.utils.extra
Fields in gnu.cajo.utils.extra declared as Remote Modifier and Type Field Description Remote
ClientProxy. remoteThis
This is the remoted reference to the server's ClientProxy.
-