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

Interface Skeleton


  • @Deprecatedpublic interface Skeleton
    Deprecated.
    no replacement. Skeletons are no longer required for remote method calls in the Java 2 platform v1.2 and greater.
    Skeleton接口仅由RMI实现使用。

    rmic stub编译器生成的每个版本1.1(以及使用rmic -vcompat在1.2中生成的1.1版兼容骨架)实现此接口。 远程对象的框架是服务器端实体,它将调用分派给实际的远程对象实现。

    从以下版本开始:
    1.1
    • 方法详细信息

      • dispatch

        @Deprecatedvoid dispatch​(Remote obj,              RemoteCall theCall,              int opnum,              long hash)       throws 异常
        Deprecated.
        no replacement
        Unmarshals参数,调用实际的远程对象实现,并编组返回值或任何异常。
        参数
        obj - 远程实现调度到
        theCall - 表示远程调用的对象
        opnum - 操作编号
        hash - 存根/骨架接口哈希
        异常
        异常 - 如果发生一般性异常。
        从以下版本开始:
        1.1
      • getOperations

        @DeprecatedOperation[] getOperations()
        Deprecated.
        no replacement
        返回骨架支持的操作。
        结果
        骨架支持的操作
        从以下版本开始:
        1.1