Rogue Wave Server 5.5 and 5.4 Release Notes > Changes to Existing Classes
 
Changes to Existing Classes
The member function OwnedTypeP getNextQuietly(); has been added to the classes IlsUsesList::Iterator and IlsOwnsList::Iterator.
*OwnedTypeP getNextQuietly();
This member function provides quick access to the next element of the list accessible through this iterator. It should not be used to evaluate a derived data member or to retrieve a value when using Rogue Wave® Server transactions.
This method returns a null pointer when the end of the list is reached.
Example:
IlsSmartPointer<Domain> d;
IlsOwnsList<Network, Domain>::Iterator iter(network->domains);
while (iter) {
d = iter.getNextQuietly();
if (d) {
// ...
}
}

Version 5.8
Copyright © 2014, Rogue Wave Software, Inc. All Rights Reserved.