|
J2ME RMI Profile | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Remote | |
java.rmi | Provides the RMI package. |
java.rmi.activation | Provides support for RMI Object Activation. |
java.rmi.dgc | Provides classes and interface for RMI distributed garbage-collection (DGC). |
java.rmi.registry | Provides a class and two interfaces for the RMI registry. |
java.rmi.server | Provides classes and interfaces for supporting the unicast server side of RMI. |
Uses of Remote in java.rmi |
Methods in java.rmi that return Remote | |
static Remote |
Naming.lookup(java.lang.String name)
Returns a reference, a stub, for the remote object associated with the specified name . |
Methods in java.rmi with parameters of type Remote | |
static void |
Naming.bind(java.lang.String name,
Remote obj)
Binds the specified name to a remote object. |
static void |
Naming.rebind(java.lang.String name,
Remote obj)
Rebinds the specified name to a new remote object. |
Uses of Remote in java.rmi.activation |
Subinterfaces of Remote in java.rmi.activation | |
interface |
Activator
The Activator facilitates remote object activation. |
Methods in java.rmi.activation that return Remote | |
Remote |
ActivationID.activate(boolean force)
Activate the object for this id. |
Uses of Remote in java.rmi.dgc |
Subinterfaces of Remote in java.rmi.dgc | |
interface |
DGC
The DGC abstraction is used for the server side of the distributed garbage collection algorithm. |
Uses of Remote in java.rmi.registry |
Subinterfaces of Remote in java.rmi.registry | |
interface |
Registry
For obtaining references to remote objects, RMI provides a simple remote object registry interface, implemented by RMI's rmiregistry , that provides methods for storing and retrieving
remote object references. |
Methods in java.rmi.registry that return Remote | |
Remote |
Registry.lookup(java.lang.String name)
Returns a reference, a stub, for the remote object associated with the specified name . |
Methods in java.rmi.registry with parameters of type Remote | |
void |
Registry.bind(java.lang.String name,
Remote obj)
Binds the specified name to a remote object. |
void |
Registry.rebind(java.lang.String name,
Remote obj)
Rebinds the specified name to a new remote object. |
Uses of Remote in java.rmi.server |
Classes in java.rmi.server that implement Remote | |
class |
RemoteObject
The RemoteObject class implements the
java.lang.Object behavior for remote objects. |
class |
RemoteServer
The RemoteServer class is the common superclass to server
implementations and provides the framework to support a wide range
of remote reference semantics. |
class |
RemoteStub
The RemoteStub class is the common superclass to client
stubs and provides the framework to support a wide range of remote
reference semantics. |
class |
UnicastRemoteObject
The UnicastRemoteObject class defines a non-replicated remote object whose references are valid only while the server process is alive. |
Methods in java.rmi.server that return Remote | |
static Remote |
RemoteObject.toStub(Remote obj)
Returns the stub for the remote object obj passed
as a parameter. |
static Remote |
UnicastRemoteObject.exportObject(Remote obj,
int port)
Export the remote object to make it available to receive incoming calls, using the particular supplied port. |
static Remote |
UnicastRemoteObject.exportObject(Remote obj,
int port,
RMIClientSocketFactory csf,
RMIServerSocketFactory ssf)
Export the remote object to make it available to receive incoming calls, using a transport specified by the given socket factory. |
Methods in java.rmi.server with parameters of type Remote | |
java.lang.Object |
RemoteRef.invoke(Remote obj,
java.lang.reflect.Method method,
java.lang.Object[] params,
long opnum)
Invoke a method. |
static Remote |
RemoteObject.toStub(Remote obj)
Returns the stub for the remote object obj passed
as a parameter. |
static RemoteStub |
UnicastRemoteObject.exportObject(Remote obj)
Export the remote object to make it available to receive incoming calls, using an anonymous port. |
static Remote |
UnicastRemoteObject.exportObject(Remote obj,
int port)
Export the remote object to make it available to receive incoming calls, using the particular supplied port. |
static Remote |
UnicastRemoteObject.exportObject(Remote obj,
int port,
RMIClientSocketFactory csf,
RMIServerSocketFactory ssf)
Export the remote object to make it available to receive incoming calls, using a transport specified by the given socket factory. |
static boolean |
UnicastRemoteObject.unexportObject(Remote obj,
boolean force)
Remove the remote object, obj, from the RMI runtime. |
|
J2ME RMI Profile | |||||||||
PREV NEXT | FRAMES NO FRAMES |