Now what if you had multiple Iterators and you wanted to process data from all of them? An example of this is if you have a number of Threads (or FutureTasks) that retrieve data from the database and then return an Iterator to the processed data. That becomes a little bit more challenging.
You'd have to have a way of combining these Iterators somehow...or chaining them to look like one single Iterator.
The IteratorChain class from Apache Commons does exactly this!
Since IteratorChain implements the Iterator interface, you can use it in place of any other standard Iterator. To use IteratorChain, either initialise it with a Collection of Iterator objects or call the addIterator() method to add all your Iterators to the chain.
The caveat is all your Iterators have to return the same data type. However if that is already the case, IteratorChain saves a good amount of work.
-i