| Net-LDAP-Class documentation | view source | Contained in the Net-LDAP-Class distribution. |
Net::LDAP::Class::MultiIterator - a set of Net::LDAP::Class::Iterator objects
my $iterator = $user->groups_iterator;
while ( my $group = $iterator->next ) {
# $group isa Net::LDAP::Class::Group
}
printf("%d groups found\n", $iterator->count);
Net::LDAP::Class::MultiIterator handles multiple iterators under a single call to next(). Used by users_iterator() and groups_iterator() methods.
The array ref of iterators. Required to be set in new().
Set up the object.
Returns the total number of iterations.
Return the next result. If one iterator on the stack is exhausted, automatically moves to the next one.
Returns true (1) if all the internal iterators return is_exhausted, false (undef) otherwise.
Calls finish() on all un-exhausted iterators.
Peter Karman, <karman at cpan.org>
Please report any bugs or feature requests to
bug-net-ldap-class at rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-LDAP-Class.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Net::LDAP::Class
You can also look for information at:
Copyright 2009 by Peter Karman.
All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Net::LDAP, Net::LDAP::Batch
| Net-LDAP-Class documentation | view source | Contained in the Net-LDAP-Class distribution. |