-
@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
-
-
方法摘要
所有方法 实例方法 抽象方法 弃用的方法 变量和类型 方法 描述 void
dispatch(Remote obj, RemoteCall theCall, int opnum, long hash)
已过时。没有替代品Operation[]
getOperations()
已过时。没有替代品
-
-
-
方法详细信息
-
dispatch
@Deprecatedvoid dispatch(Remote obj, RemoteCall theCall, int opnum, long hash) throws 异常
Deprecated.no replacementUnmarshals参数,调用实际的远程对象实现,并编组返回值或任何异常。- 参数
-
obj
- 远程实现调度到 -
theCall
- 表示远程调用的对象 -
opnum
- 操作编号 -
hash
- 存根/骨架接口哈希 - 异常
-
异常
- 如果发生一般性异常。 - 从以下版本开始:
- 1.1
-
getOperations
@DeprecatedOperation[] getOperations()
Deprecated.no replacement返回骨架支持的操作。- 结果
- 骨架支持的操作
- 从以下版本开始:
- 1.1
-
-