public final class ServiceInformationHolder extends Object implements Streamable
用于在IDL方法中存储“out”和“inout”参数的ServiceInformation
对象的持有者类。 如果IDL方法签名将IDL xxx
作为“out”或“INOUT”参数,则程序员必须传递的一个实例ServiceInformationHolder
如在方法调用对应的参数; 对于“inout”参数,程序员还必须填写要发送到服务器的“in”值。 在方法调用返回之前,ORB将填写与从服务器返回的“out”值对应的值。
如果myServiceInformationHolder
是实例ServiceInformationHolder
,存储在其值value
字段可以与被访问myServiceInformationHolder.value
。
Modifier and Type | Field and Description |
---|---|
ServiceInformation |
value
该
ServiceInformation 持有的
ServiceInformationHolder 对象在其
value 字段中。
|
Constructor and Description |
---|
ServiceInformationHolder()
构造一个新的
ServiceInformationHolder 对象,其
value 字段初始化为null。
|
ServiceInformationHolder(ServiceInformation arg)
构造一个新的
ServiceInformationHolder 对象,其
value 字段初始化为给定的
ServiceInformation 对象。
|
Modifier and Type | Method and Description |
---|---|
void |
_read(InputStream in)
从输入流
in 读取未编组的数据,并将其分配给此
ServiceInformationHolder 对象中的
value 字段。
|
TypeCode |
_type()
检索
TypeCode 对应于该保存的值对象
ServiceInformationHolder 对象
value 场。
|
void |
_write(OutputStream out)
将此
ServiceInformationHolder 对象的
value 字段中的值
value 到输出流
out 。
|
public ServiceInformation value
ServiceInformation
价值由
ServiceInformationHolder
对象在其
value
领域
value
。
public ServiceInformationHolder()
ServiceInformationHolder
对象,其
value
字段初始化为null。
public ServiceInformationHolder(ServiceInformation arg)
ServiceInformationHolder
对象,其
value
字段初始化为给定的
ServiceInformation
对象。
arg
-
ServiceInformation
对象,用于初始化新创建的
ServiceInformationHolder
对象的
value
字段
public void _write(OutputStream out)
ServiceInformationHolder
对象的
value
字段中的值
value
到输出流
out
。
_write
在接口
Streamable
out
- 将包含CDR格式数据的
OutputStream
对象
public void _read(InputStream in)
in
读取未编组的数据,并将其分配给此
ServiceInformationHolder
对象中的
value
字段。
_read
在界面
Streamable
in
-
InputStream
对象,包含来自电线的CDR格式数据
public TypeCode _type()
TypeCode
对应于该保存的值对象
ServiceInformationHolder
对象
value
场。
_type
在接口
Streamable
ServiceInformationHolder
对象中保存的值的类型代码
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.