模块  java.rmi
软件包  java.rmi.registry

Interface RegistryHandler


  • @Deprecated
    public interface RegistryHandler
    Deprecated.
    no replacement
    RegistryHandler是RMI运行时在以前的实现版本中内部使用的接口。 它永远不应该被应用程序代码访问。
    从以下版本开始:
    1.1
    • 方法详细信息

      • registryStub

        @Deprecated
        Registry registryStub​(String host,
                              int port)
                       throws RemoteException,
                              UnknownHostException
        Deprecated.
        no replacement. As of the Java 2 platform v1.2, RMI no longer uses the RegistryHandler to obtain the registry's stub.
        返回用于联系指定主机和端口上的远程注册表的“存根”。
        参数
        host - 远程注册表主机的名称
        port - 远程注册表端口
        结果
        远程注册表存根
        异常
        RemoteException - 如果发生远程错误
        UnknownHostException - 如果无法解析给定的主机名
      • registryImpl

        @Deprecated
        Registry registryImpl​(int port)
                       throws RemoteException
        Deprecated.
        no replacement. As of the Java 2 platform v1.2, RMI no longer uses the RegistryHandler to obtain the registry's implementation.
        在指定端口上构造和导出Registry。 端口必须为非零。
        参数
        port - 要导出注册表的端口
        结果
        注册表存根
        异常
        RemoteException - 如果发生远程错误