-
- All Known Subinterfaces:
-
BindingIterator
public interface BindingIteratorOperations
BindingIterator接口允许客户端使用next_one或next_n操作来迭代绑定。 绑定迭代器通过在list
上使用list
方法NamingContext
。
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 void
destroy()
此操作会破坏迭代器。boolean
next_n(int how_many, BindingListHolder bl)
此操作最多返回所请求的绑定数量。boolean
next_one(BindingHolder b)
此操作返回下一个绑定。
-
-
-
方法详细信息
-
next_one
boolean next_one(BindingHolder b)
此操作返回下一个绑定。 如果没有更多的绑定,则返回false。- 参数
-
b
- 返回的绑定
-
next_n
boolean next_n(int how_many, BindingListHolder bl)
此操作最多返回所请求的绑定数量。- 参数
-
how_many
- 返回的绑定的最大数量 -
bl
- 返回的绑定
-
destroy
void destroy()
This operation destroys the iterator.
-
-