Uses of Interface
java.rmi.Remote
-
Packages that use Remote 软件包 描述 java.rmi 提供RMI包。java.rmi.activation 提供对RMI对象激活的支持。java.rmi.dgc 提供RMI分布式垃圾收集(DGC)的类和接口。java.rmi.registry 为RMI注册表提供一个类和两个接口。java.rmi.server 提供用于支持RMI服务器端的类和接口。javax.management.remote.rmi RMI连接器是JMX Remote API的连接器,它使用RMI将客户端请求传输到远程MBean服务器。javax.rmi 包含RMI-IIOP的用户API。javax.rmi.CORBA 包含RMI-IIOP的可移植API。org.omg.stub.java.rmi 包含在java.rmi
包中发生的远程类型的RMI-IIOP存根。 -
-
Uses of Remote in java.rmi
Methods in java.rmi that return Remote Modifier and Type 方法 描述 static Remote
Naming. lookup(String name)
返回与指定的name
关联的远程对象的引用(stub)。Methods in java.rmi with parameters of type Remote Modifier and Type 方法 描述 static void
Naming. bind(String name, Remote obj)
将指定的name
绑定到远程对象。static void
Naming. rebind(String name, Remote obj)
将指定的名称重新绑定到一个新的远程对象。 -
Uses of Remote in java.rmi.activation
Subinterfaces of Remote in java.rmi.activation Modifier and Type 接口 描述 interface
ActivationInstantiator
一个ActivationInstantiator
负责创建“可激活”对象的实例。interface
ActivationMonitor
一个ActivationMonitor
是专门针对一个ActivationGroup
,当通过一个呼叫报告一个组被报告为ActivationSystem.activeGroup
(这是在内部完成)时获得的。interface
ActivationSystem
ActivationSystem
提供了一种注册组和“激活”对象在这些组内被激活的方法。interface
Activator
Activator
促进远程对象激活。Classes in java.rmi.activation that implement Remote Modifier and Type Class 描述 class
Activatable
Activatable
类为需要持续访问的远程对象提供支持,并可由系统激活。class
ActivationGroup
ActivationGroup
负责在其组中创建“可激活”对象的新实例,通知其ActivationMonitor
何时:其对象变为活动或非活动,或组作为整体变为不活动。class
ActivationGroup_Stub
ActivationGroup_Stub
是导出为java.rmi.server.UnicastRemoteObject
的java.rmi.activation.ActivationGroup
的子类的存根类。Methods in java.rmi.activation that return Remote Modifier and Type 方法 描述 Remote
ActivationID. activate(boolean force)
激活该ID的对象。static Remote
Activatable. exportObject(Remote obj, ActivationID id, int port)
将可激活的远程对象导出到RMI运行时间,使对象可用于接收来电。static Remote
Activatable. exportObject(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
将可激活的远程对象导出到RMI运行时间,使对象可用于接收来电。static Remote
Activatable. register(ActivationDesc desc)
注册可激活的远程对象的对象描述符,以便可以按需激活。Methods in java.rmi.activation that return types with arguments of type Remote Modifier and Type 方法 描述 MarshalledObject<? extends Remote>
Activator. activate(ActivationID id, boolean force)
激活与激活标识符相关联的对象,id
。MarshalledObject<? extends Remote>
ActivationInstantiator. newInstance(ActivationID id, ActivationDesc desc)
激活器调用实例化器的newInstance
方法,以便在该组中重新创建具有激活标识符id
和描述符desc
。Methods in java.rmi.activation with parameters of type Remote Modifier and Type 方法 描述 abstract void
ActivationGroup. activeObject(ActivationID id, Remote obj)
当对象被导出(由Activatable
对象构造或显式调用到Activatable.exportObject
时,将调用该组的activeObject
方法。static ActivationID
Activatable. exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port)
为指定的对象注册激活描述符(具有指定的位置,数据和重新启动模式),并使用指定的端口导出该对象。static ActivationID
Activatable. exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
注册指定对象的激活描述符(具有指定位置,数据和重新启动模式),并使用指定的端口以及指定的客户端和服务器套接字工厂导出该对象。static Remote
Activatable. exportObject(Remote obj, ActivationID id, int port)
将可激活的远程对象导出到RMI运行时间,使对象可用于接收来电。static Remote
Activatable. exportObject(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
将可激活的远程对象导出到RMI运行时间,使对象可用于接收来电。static boolean
Activatable. unexportObject(Remote obj, boolean force)
从RMI运行时中删除远程对象obj。Method parameters in java.rmi.activation with type arguments of type Remote Modifier and Type 方法 描述 protected void
ActivationGroup. activeObject(ActivationID id, MarshalledObject<? extends Remote> mobj)
这种受保护的方法对于子类来说使activeObject
回调到组的监视器是必要的。void
ActivationMonitor. activeObject(ActivationID id, MarshalledObject<? extends Remote> obj)
通知对象现在处于活动状态。 -
Uses of Remote in java.rmi.dgc
Subinterfaces of Remote in java.rmi.dgc Modifier and Type 接口 描述 interface
DGC
DGC抽象用于分布式垃圾回收算法的服务器端。 -
Uses of Remote in java.rmi.registry
Subinterfaces of Remote in java.rmi.registry Modifier and Type 接口 描述 interface
Registry
Registry
是一个简单的远程对象注册表的远程接口,提供用于存储和检索与任意字符串名称绑定的远程对象引用的方法。Methods in java.rmi.registry that return Remote Modifier and Type 方法 描述 Remote
Registry. lookup(String name)
返回绑定到此注册表中指定的name
的远程引用。Methods in java.rmi.registry with parameters of type Remote Modifier and Type 方法 描述 void
Registry. bind(String name, Remote obj)
将远程引用绑定到此注册表中指定的name
。void
Registry. rebind(String name, Remote obj)
使用提供的远程引用替换此注册表中指定的name
的绑定。 -
Uses of Remote in java.rmi.server
Classes in java.rmi.server that implement Remote Modifier and Type Class 描述 class
RemoteObject
RemoteObject
类实现了远程对象的java.lang.Object
行为。class
RemoteObjectInvocationHandler
用于Java Remote Method Invocation(Java RMI)的InvocationHandler
接口的实现。class
RemoteServer
RemoteServer
类是服务器实现的常见超类,并提供了支持各种远程引用语义的框架。class
RemoteStub
已过时。静态生成的存根被不推荐使用,因为存根是动态生成的。 有关动态存根生成的信息,请参阅UnicastRemoteObject
。class
UnicastRemoteObject
用于使用JRMP导出远程对象并获取与远程对象通信的存根。Methods in java.rmi.server that return Remote Modifier and Type 方法 描述 static Remote
UnicastRemoteObject. exportObject(Remote obj, int port)
使用特定提供的端口导出远程对象以使其可用于接收来电。static Remote
UnicastRemoteObject. exportObject(Remote obj, int port, ObjectInputFilter filter)
使用特定提供的端口和filter导出远程对象以使其可用于接收来电。static Remote
UnicastRemoteObject. exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
使用给定套接字工厂指定的传输导出远程对象以使其可用于接收来电。static Remote
UnicastRemoteObject. exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, ObjectInputFilter filter)
导出远程对象以使其可用于接收来电,使用给定套接字工厂指定的传输和filter 。static Remote
RemoteObject. toStub(Remote obj)
返回作为参数传递的远程对象的存根obj
。Methods in java.rmi.server with parameters of type Remote Modifier and Type 方法 描述 void
Skeleton. dispatch(Remote obj, RemoteCall theCall, int opnum, long hash)
已过时。没有替换RemoteStub
ServerRef. exportObject(Remote obj, Object data)
已过时。为所提供的Remote对象创建客户端存根对象。static RemoteStub
UnicastRemoteObject. exportObject(Remote obj)
已过时。此方法已被弃用,因为它仅支持静态存根。 请改用exportObject(Remote, port)
或exportObject(Remote, port, csf, ssf)
。static Remote
UnicastRemoteObject. exportObject(Remote obj, int port)
使用特定提供的端口导出远程对象以使其可用于接收来电。static Remote
UnicastRemoteObject. exportObject(Remote obj, int port, ObjectInputFilter filter)
使用特定提供的端口和filter导出远程对象以使其可用于接收来电。static Remote
UnicastRemoteObject. exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
使用给定套接字工厂指定的传输导出远程对象以使其可用于接收来电。static Remote
UnicastRemoteObject. exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, ObjectInputFilter filter)
导出远程对象以使其可用于接收来电,使用由给定的套接字工厂指定的传输和filter 。Object
RemoteRef. invoke(Remote obj, 方法 method, Object[] params, long opnum)
调用方法。static Remote
RemoteObject. toStub(Remote obj)
返回作为参数传递的远程对象obj
的存根。static boolean
UnicastRemoteObject. unexportObject(Remote obj, boolean force)
从RMI运行时中删除远程对象obj。 -
Uses of Remote in javax.management.remote.rmi
Subinterfaces of Remote in javax.management.remote.rmi Modifier and Type 接口 描述 interface
RMIConnection
用于将MBeanServer请求从客户端转发到其在服务器端的MBeanServer实现的RMI对象。interface
RMIServer
用于建立与RMI连接器的连接的RMI对象。Classes in javax.management.remote.rmi that implement Remote Modifier and Type Class 描述 class
RMIConnectionImpl
实现RMIConnection
接口。class
RMIConnectionImpl_Stub
class
RMIIIOPServerImpl
已过时。此运输已不再受支持。class
RMIJRMPServerImpl
一个RMIServer
对象,通过JRMP导出,并将客户端连接创建为通过JRMP导出的RMI对象。class
RMIServerImpl
表示连接器服务器的RMI对象。class
RMIServerImpl_Stub
Methods in javax.management.remote.rmi that return Remote Modifier and Type 方法 描述 Remote
RMIIIOPServerImpl. toStub()
已过时。Remote
RMIJRMPServerImpl. toStub()
返回此RMIServer
对象的可序列存根。abstract Remote
RMIServerImpl. toStub()
返回此服务器对象的远程存根。 -
Uses of Remote in javax.rmi
Methods in javax.rmi that return Remote Modifier and Type 方法 描述 static Remote
PortableRemoteObject. toStub(Remote obj)
返回给定服务器对象的存根。Methods in javax.rmi with parameters of type Remote Modifier and Type 方法 描述 static void
PortableRemoteObject. connect(Remote target, Remote source)
使远程对象准备好进行远程通信。static void
PortableRemoteObject. exportObject(Remote obj)
使服务器对象准备好接收远程调用。static Remote
PortableRemoteObject. toStub(Remote obj)
返回给定服务器对象的存根。static void
PortableRemoteObject. unexportObject(Remote obj)
从运行时取消注册服务器对象,允许对象可用于垃圾回收。 -
Uses of Remote in javax.rmi.CORBA
Methods in javax.rmi.CORBA that return Remote Modifier and Type 方法 描述 Remote
Tie. getTarget()
返回此领带的目标。Remote
PortableRemoteObjectDelegate. toStub(Remote obj)
Methods in javax.rmi.CORBA with parameters of type Remote Modifier and Type 方法 描述 void
PortableRemoteObjectDelegate. connect(Remote target, Remote source)
void
PortableRemoteObjectDelegate. exportObject(Remote obj)
static Tie
Util. getTie(Remote target)
返回给定目标对象的tie(如果有)。Tie
UtilDelegate. getTie(Remote target)
代表团要求Util.getTie(java.rmi.Remote)
。static void
Util. registerTarget(Tie tie, Remote target)
注册一个领带的目标。void
UtilDelegate. registerTarget(Tie tie, Remote target)
void
Tie. setTarget(Remote target)
Remote
PortableRemoteObjectDelegate. toStub(Remote obj)
void
PortableRemoteObjectDelegate. unexportObject(Remote obj)
static void
Util. unexportObject(Remote target)
从内部表中删除相关联的绑定,并调用Tie.deactivate()
以停用该对象。void
UtilDelegate. unexportObject(Remote target)
-
Uses of Remote in org.omg.stub.java.rmi
Classes in org.omg.stub.java.rmi that implement Remote Modifier and Type Class 描述 class
_Remote_Stub
This class provides the Stub for the Remote Type.
-