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 RemoteNaming. lookup(String name)返回与指定的name关联的远程对象的引用(stub)。Methods in java.rmi with parameters of type Remote Modifier and Type 方法 描述 static voidNaming. bind(String name, Remote obj)将指定的name绑定到远程对象。static voidNaming. rebind(String name, Remote obj)将指定的名称重新绑定到一个新的远程对象。 -
Uses of Remote in java.rmi.activation
Subinterfaces of Remote in java.rmi.activation Modifier and Type 接口 描述 interfaceActivationInstantiator一个ActivationInstantiator负责创建“可激活”对象的实例。interfaceActivationMonitor一个ActivationMonitor是专门针对一个ActivationGroup,当通过一个呼叫报告一个组被报告为ActivationSystem.activeGroup(这是在内部完成)时获得的。interfaceActivationSystemActivationSystem提供了一种注册组和“激活”对象在这些组内被激活的方法。interfaceActivatorActivator促进远程对象激活。Classes in java.rmi.activation that implement Remote Modifier and Type Class 描述 classActivatableActivatable类为需要持续访问的远程对象提供支持,并可由系统激活。classActivationGroupActivationGroup负责在其组中创建“可激活”对象的新实例,通知其ActivationMonitor何时:其对象变为活动或非活动,或组作为整体变为不活动。classActivationGroup_StubActivationGroup_Stub是导出为java.rmi.server.UnicastRemoteObject的java.rmi.activation.ActivationGroup的子类的存根类。Methods in java.rmi.activation that return Remote Modifier and Type 方法 描述 RemoteActivationID. activate(boolean force)激活该ID的对象。static RemoteActivatable. exportObject(Remote obj, ActivationID id, int port)将可激活的远程对象导出到RMI运行时间,使对象可用于接收来电。static RemoteActivatable. exportObject(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)将可激活的远程对象导出到RMI运行时间,使对象可用于接收来电。static RemoteActivatable. 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 voidActivationGroup. activeObject(ActivationID id, Remote obj)当对象被导出(由Activatable对象构造或显式调用到Activatable.exportObject时,将调用该组的activeObject方法。static ActivationIDActivatable. exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port)为指定的对象注册激活描述符(具有指定的位置,数据和重新启动模式),并使用指定的端口导出该对象。static ActivationIDActivatable. exportObject(Remote obj, String location, MarshalledObject<?> data, boolean restart, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)注册指定对象的激活描述符(具有指定位置,数据和重新启动模式),并使用指定的端口以及指定的客户端和服务器套接字工厂导出该对象。static RemoteActivatable. exportObject(Remote obj, ActivationID id, int port)将可激活的远程对象导出到RMI运行时间,使对象可用于接收来电。static RemoteActivatable. exportObject(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)将可激活的远程对象导出到RMI运行时间,使对象可用于接收来电。static booleanActivatable. unexportObject(Remote obj, boolean force)从RMI运行时中删除远程对象obj。Method parameters in java.rmi.activation with type arguments of type Remote Modifier and Type 方法 描述 protected voidActivationGroup. activeObject(ActivationID id, MarshalledObject<? extends Remote> mobj)这种受保护的方法对于子类来说使activeObject回调到组的监视器是必要的。voidActivationMonitor. activeObject(ActivationID id, MarshalledObject<? extends Remote> obj)通知对象现在处于活动状态。 -
Uses of Remote in java.rmi.dgc
Subinterfaces of Remote in java.rmi.dgc Modifier and Type 接口 描述 interfaceDGCDGC抽象用于分布式垃圾回收算法的服务器端。 -
Uses of Remote in java.rmi.registry
Subinterfaces of Remote in java.rmi.registry Modifier and Type 接口 描述 interfaceRegistryRegistry是一个简单的远程对象注册表的远程接口,提供用于存储和检索与任意字符串名称绑定的远程对象引用的方法。Methods in java.rmi.registry that return Remote Modifier and Type 方法 描述 RemoteRegistry. lookup(String name)返回绑定到此注册表中指定的name的远程引用。Methods in java.rmi.registry with parameters of type Remote Modifier and Type 方法 描述 voidRegistry. bind(String name, Remote obj)将远程引用绑定到此注册表中指定的name。voidRegistry. 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 描述 classRemoteObjectRemoteObject类实现了远程对象的java.lang.Object行为。classRemoteObjectInvocationHandler用于Java Remote Method Invocation(Java RMI)的InvocationHandler接口的实现。classRemoteServerRemoteServer类是服务器实现的常见超类,并提供了支持各种远程引用语义的框架。classRemoteStub已过时。静态生成的存根被不推荐使用,因为存根是动态生成的。 有关动态存根生成的信息,请参阅UnicastRemoteObject。classUnicastRemoteObject用于使用JRMP导出远程对象并获取与远程对象通信的存根。Methods in java.rmi.server that return Remote Modifier and Type 方法 描述 static RemoteUnicastRemoteObject. exportObject(Remote obj, int port)使用特定提供的端口导出远程对象以使其可用于接收来电。static RemoteUnicastRemoteObject. exportObject(Remote obj, int port, ObjectInputFilter filter)使用特定提供的端口和filter导出远程对象以使其可用于接收来电。static RemoteUnicastRemoteObject. exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)使用给定套接字工厂指定的传输导出远程对象以使其可用于接收来电。static RemoteUnicastRemoteObject. exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, ObjectInputFilter filter)导出远程对象以使其可用于接收来电,使用给定套接字工厂指定的传输和filter 。static RemoteRemoteObject. toStub(Remote obj)返回作为参数传递的远程对象的存根obj。Methods in java.rmi.server with parameters of type Remote Modifier and Type 方法 描述 voidSkeleton. dispatch(Remote obj, RemoteCall theCall, int opnum, long hash)已过时。没有替换RemoteStubServerRef. exportObject(Remote obj, Object data)已过时。为所提供的Remote对象创建客户端存根对象。static RemoteStubUnicastRemoteObject. exportObject(Remote obj)已过时。此方法已被弃用,因为它仅支持静态存根。 请改用exportObject(Remote, port)或exportObject(Remote, port, csf, ssf)。static RemoteUnicastRemoteObject. exportObject(Remote obj, int port)使用特定提供的端口导出远程对象以使其可用于接收来电。static RemoteUnicastRemoteObject. exportObject(Remote obj, int port, ObjectInputFilter filter)使用特定提供的端口和filter导出远程对象以使其可用于接收来电。static RemoteUnicastRemoteObject. exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf)使用给定套接字工厂指定的传输导出远程对象以使其可用于接收来电。static RemoteUnicastRemoteObject. exportObject(Remote obj, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, ObjectInputFilter filter)导出远程对象以使其可用于接收来电,使用由给定的套接字工厂指定的传输和filter 。ObjectRemoteRef. invoke(Remote obj, 方法 method, Object[] params, long opnum)调用方法。static RemoteRemoteObject. toStub(Remote obj)返回作为参数传递的远程对象obj的存根。static booleanUnicastRemoteObject. 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 接口 描述 interfaceRMIConnection用于将MBeanServer请求从客户端转发到其在服务器端的MBeanServer实现的RMI对象。interfaceRMIServer用于建立与RMI连接器的连接的RMI对象。Classes in javax.management.remote.rmi that implement Remote Modifier and Type Class 描述 classRMIConnectionImpl实现RMIConnection接口。classRMIConnectionImpl_StubclassRMIIIOPServerImpl已过时。此运输已不再受支持。classRMIJRMPServerImpl一个RMIServer对象,通过JRMP导出,并将客户端连接创建为通过JRMP导出的RMI对象。classRMIServerImpl表示连接器服务器的RMI对象。classRMIServerImpl_StubMethods in javax.management.remote.rmi that return Remote Modifier and Type 方法 描述 RemoteRMIIIOPServerImpl. toStub()已过时。RemoteRMIJRMPServerImpl. toStub()返回此RMIServer对象的可序列存根。abstract RemoteRMIServerImpl. toStub()返回此服务器对象的远程存根。 -
Uses of Remote in javax.rmi
Methods in javax.rmi that return Remote Modifier and Type 方法 描述 static RemotePortableRemoteObject. toStub(Remote obj)返回给定服务器对象的存根。Methods in javax.rmi with parameters of type Remote Modifier and Type 方法 描述 static voidPortableRemoteObject. connect(Remote target, Remote source)使远程对象准备好进行远程通信。static voidPortableRemoteObject. exportObject(Remote obj)使服务器对象准备好接收远程调用。static RemotePortableRemoteObject. toStub(Remote obj)返回给定服务器对象的存根。static voidPortableRemoteObject. unexportObject(Remote obj)从运行时取消注册服务器对象,允许对象可用于垃圾回收。 -
Uses of Remote in javax.rmi.CORBA
Methods in javax.rmi.CORBA that return Remote Modifier and Type 方法 描述 RemoteTie. getTarget()返回此领带的目标。RemotePortableRemoteObjectDelegate. toStub(Remote obj)Methods in javax.rmi.CORBA with parameters of type Remote Modifier and Type 方法 描述 voidPortableRemoteObjectDelegate. connect(Remote target, Remote source)voidPortableRemoteObjectDelegate. exportObject(Remote obj)static TieUtil. getTie(Remote target)返回给定目标对象的tie(如果有)。TieUtilDelegate. getTie(Remote target)代表团要求Util.getTie(java.rmi.Remote)。static voidUtil. registerTarget(Tie tie, Remote target)注册一个领带的目标。voidUtilDelegate. registerTarget(Tie tie, Remote target)voidTie. setTarget(Remote target)RemotePortableRemoteObjectDelegate. toStub(Remote obj)voidPortableRemoteObjectDelegate. unexportObject(Remote obj)static voidUtil. unexportObject(Remote target)从内部表中删除相关联的绑定,并调用Tie.deactivate()以停用该对象。voidUtilDelegate. 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_StubThis class provides the Stub for the Remote Type.
-