Uses of Interface
java.rmi.Remote
Package | Description |
---|---|
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 server
side of RMI.
|
javax.management.remote.rmi |
The RMI connector is a connector for the JMX Remote API that
uses RMI to transmit client requests to a remote MBean server.
|
-
Uses of Remote in java.rmi
-
Uses of Remote in java.rmi.activation
Subinterfaces of Remote in java.rmi.activation Modifier and Type Interface Description interface
ActivationInstantiator
AnActivationInstantiator
is responsible for creating instances of "activatable" objects.interface
ActivationMonitor
AnActivationMonitor
is specific to anActivationGroup
and is obtained when a group is reported active via a call toActivationSystem.activeGroup
(this is done internally).interface
ActivationSystem
TheActivationSystem
provides a means for registering groups and "activatable" objects to be activated within those groups.interface
Activator
TheActivator
facilitates remote object activation.Classes in java.rmi.activation that implement Remote Modifier and Type Class Description class
Activatable
TheActivatable
class provides support for remote objects that require persistent access over time and that can be activated by the system.class
ActivationGroup
AnActivationGroup
is responsible for creating new instances of "activatable" objects in its group, informing itsActivationMonitor
when either: its object's become active or inactive, or the group as a whole becomes inactive.class
ActivationGroup_Stub
ActivationGroup_Stub
is a stub class for the subclasses ofjava.rmi.activation.ActivationGroup
that are exported as ajava.rmi.server.UnicastRemoteObject
.Methods in java.rmi.activation that return Remote Modifier and Type Method Description Remote
ActivationID. activate(boolean force)
Activate the object for this id.static Remote
Activatable. exportObject(Remote obj, ActivationID id, int port)
Export the activatable remote object to the RMI runtime to make the object available to receive incoming calls.static Remote
Activatable. exportObject(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
Export the activatable remote object to the RMI runtime to make the object available to receive incoming calls.static Remote
Activatable. register(ActivationDesc desc)
Register an object descriptor for an activatable remote object so that is can be activated on demand.Methods in java.rmi.activation that return types with arguments of type Remote Modifier and Type Method Description MarshalledObject<? extends Remote>
Activator. activate(ActivationID id, boolean force)
Activate the object associated with the activation identifier,id
.MarshalledObject<? extends Remote>
ActivationInstantiator. newInstance(ActivationID id, ActivationDesc desc)
The activator calls an instantiator'snewInstance
method in order to recreate in that group an object with the activation identifier,id
, and descriptor,desc
.Methods in java.rmi.activation with parameters of type Remote Modifier and Type Method Description abstract void
ActivationGroup. activeObject(ActivationID id, Remote obj)
The group'sactiveObject
method is called when an object is exported (either byActivatable
object construction or an explicit call toActivatable.exportObject
.static ActivationID
Activatable. exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port)
Registers an activation descriptor (with the specified location, data, and restart mode) for the specified object, and exports that object with the specified port.static ActivationID
Activatable. exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
Registers an activation descriptor (with the specified location, data, and restart mode) for the specified object, and exports that object with the specified port, and the specified client and server socket factories.static Remote
Activatable. exportObject(Remote obj, ActivationID id, int port)
Export the activatable remote object to the RMI runtime to make the object available to receive incoming calls.static Remote
Activatable. exportObject(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
Export the activatable remote object to the RMI runtime to make the object available to receive incoming calls.static boolean
Activatable. unexportObject(Remote obj, boolean force)
Remove the remote object, obj, from the RMI runtime.Method parameters in java.rmi.activation with type arguments of type Remote Modifier and Type Method Description protected void
ActivationGroup. activeObject(ActivationID id, MarshalledObject<? extends Remote> mobj)
This protected method is necessary for subclasses to make theactiveObject
callback to the group's monitor.void
ActivationMonitor. activeObject(ActivationID id, MarshalledObject<? extends Remote> obj)
Informs that an object is now active. -
Uses of Remote in java.rmi.dgc
Subinterfaces of Remote in java.rmi.dgc Modifier and Type Interface Description 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 Modifier and Type Interface Description interface
Registry
Registry
is a remote interface to a simple remote object registry that provides methods for storing and retrieving remote object references bound with arbitrary string names.Methods in java.rmi.registry that return Remote Modifier and Type Method Description Remote
Registry. lookup(String name)
Returns the remote reference bound to the specifiedname
in this registry.Methods in java.rmi.registry with parameters of type Remote Modifier and Type Method Description void
Registry. bind(String name, Remote obj)
Binds a remote reference to the specifiedname
in this registry.void
Registry. rebind(String name, Remote obj)
Replaces the binding for the specifiedname
in this registry with the supplied remote reference. -
Uses of Remote in java.rmi.server
Classes in java.rmi.server that implement Remote Modifier and Type Class Description class
RemoteObject
TheRemoteObject
class implements thejava.lang.Object
behavior for remote objects.class
RemoteObjectInvocationHandler
An implementation of theInvocationHandler
interface for use with Java Remote Method Invocation (Java RMI).class
RemoteServer
TheRemoteServer
class is the common superclass to server implementations and provides the framework to support a wide range of remote reference semantics.class
RemoteStub
Deprecated.Statically generated stubs are deprecated, since stubs are generated dynamically.class
UnicastRemoteObject
Used for exporting a remote object with JRMP and obtaining a stub that communicates to the remote object.Methods in java.rmi.server that return Remote Modifier and Type Method Description static Remote
UnicastRemoteObject. exportObject(Remote obj, int port)
Exports the remote object to make it available to receive incoming calls, using the particular supplied port.static Remote
UnicastRemoteObject. exportObject(Remote obj, int port, ObjectInputFilter filter)
Exports the remote object to make it available to receive incoming calls, using the particular supplied port and filter.static Remote
UnicastRemoteObject. 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.static Remote
UnicastRemoteObject. exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, ObjectInputFilter filter)
Exports the remote object to make it available to receive incoming calls, using a transport specified by the given socket factory and filter.static Remote
RemoteObject. toStub(Remote obj)
Returns the stub for the remote objectobj
passed as a parameter.Methods in java.rmi.server with parameters of type Remote Modifier and Type Method Description void
Skeleton. dispatch(Remote obj, RemoteCall theCall, int opnum, long hash)
Deprecated.no replacementRemoteStub
ServerRef. exportObject(Remote obj, Object data)
Deprecated.Creates a client stub object for the supplied Remote object.static RemoteStub
UnicastRemoteObject. exportObject(Remote obj)
Deprecated.This method is deprecated because it supports only static stubs.static Remote
UnicastRemoteObject. exportObject(Remote obj, int port)
Exports the remote object to make it available to receive incoming calls, using the particular supplied port.static Remote
UnicastRemoteObject. exportObject(Remote obj, int port, ObjectInputFilter filter)
Exports the remote object to make it available to receive incoming calls, using the particular supplied port and filter.static Remote
UnicastRemoteObject. 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.static Remote
UnicastRemoteObject. exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, ObjectInputFilter filter)
Exports the remote object to make it available to receive incoming calls, using a transport specified by the given socket factory and filter.Object
RemoteRef. invoke(Remote obj, Method method, Object[] params, long opnum)
Invoke a method.static Remote
RemoteObject. toStub(Remote obj)
Returns the stub for the remote objectobj
passed as a parameter.static boolean
UnicastRemoteObject. unexportObject(Remote obj, boolean force)
Removes the remote object, obj, from the RMI runtime. -
Uses of Remote in javax.management.remote.rmi
Subinterfaces of Remote in javax.management.remote.rmi Modifier and Type Interface Description interface
RMIConnection
RMI object used to forward an MBeanServer request from a client to its MBeanServer implementation on the server side.interface
RMIServer
RMI object used to establish connections to an RMI connector.Classes in javax.management.remote.rmi that implement Remote Modifier and Type Class Description class
RMIConnectionImpl
Implementation of theRMIConnection
interface.class
RMIConnectionImpl_Stub
class
RMIIIOPServerImpl
Deprecated.This transport is no longer supported.class
RMIJRMPServerImpl
AnRMIServer
object that is exported through JRMP and that creates client connections as RMI objects exported through JRMP.class
RMIServerImpl
An RMI object representing a connector server.class
RMIServerImpl_Stub