[Enterprise Extensions only]

BindingIterator::next_n

Overview Retrieves at most the specified number of name-object bindings.
Original interface CosNaming::BindingIterator Interface
Exceptions CORBA standard exceptions


Intended Usage

This operation allows clients to iterate through the bindings in the iterator. It is intended to be used by client applications. It is not typically overridden.

IDL Syntax

  boolean next_n(
    in unsigned long how_many,
    out CosNaming::BindingList blist);

Input parameters

how_many
The maximum number of bindings to be returned.
blist
The returned BindingList.

Return values

TRUE
Indicates that more bindings exist.
FALSE
Indicates to the client that there are no more bindings.

Example

See the CosNaming Usage example for BindingIterator::destroy.