- java.lang.Object
-
- org.omg.CORBA.portable.ObjectImpl
-
- org.omg.CosNaming._BindingIteratorStub
-
- All Implemented Interfaces:
-
Serializable
,Object
,IDLEntity
,BindingIterator
,BindingIteratorOperations
public class _BindingIteratorStub extends ObjectImpl implements BindingIterator
BindingIterator接口允许客户端使用next_one或next_n操作来迭代绑定。 绑定迭代器通过在list
上使用list
方法NamingContext
。
-
-
构造方法摘要
构造方法 Constructor 描述 _BindingIteratorStub()
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 String[]
_ids()
检索包含此ObjectImpl
对象支持的存储库标识符的字符串数组。void
destroy()
此操作会破坏迭代器。boolean
next_n(int how_many, BindingListHolder bl)
此操作最多返回所请求的绑定数量。boolean
next_one(BindingHolder b)
此操作返回下一个绑定。-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.omg.CORBA.Object
_create_request, _create_request, _duplicate, _get_domain_managers, _get_interface_def, _get_policy, _hash, _is_a, _is_equivalent, _non_existent, _release, _request, _set_policy_override
-
Methods inherited from class org.omg.CORBA.portable.ObjectImpl
_create_request, _create_request, _duplicate, _get_delegate, _get_domain_managers, _get_interface_def, _get_policy, _hash, _invoke, _is_a, _is_equivalent, _is_local, _non_existent, _orb, _release, _releaseReply, _request, _request, _servant_postinvoke, _servant_preinvoke, _set_delegate, _set_policy_override, equals, hashCode, toString
-
-
-
-
方法详细信息
-
next_one
public boolean next_one(BindingHolder b)
此操作返回下一个绑定。 如果没有更多的绑定,则返回false。- Specified by:
-
next_one
在接口BindingIteratorOperations
- 参数
-
b
- 返回的绑定
-
next_n
public boolean next_n(int how_many, BindingListHolder bl)
此操作最多返回所请求的绑定数量。- Specified by:
-
next_n
在接口BindingIteratorOperations
- 参数
-
how_many
- 返回的绑定的最大数量 -
bl
- 返回的绑定
-
destroy
public void destroy()
此操作会破坏迭代器。- Specified by:
-
destroy
在接口BindingIteratorOperations
-
_ids
public String[] _ids()
描述从类复制:ObjectImpl
检索包含此ObjectImpl
对象支持的存储库标识符的字符串数组。 例如,对于stub,此方法返回有关stub支持的所有接口的信息。- Specified by:
-
_ids
在ObjectImpl
- 结果
-
该
ObjectImpl
实例支持的所有存储库标识的数组
-
-