Interface MultiDataIterator

All Superinterfaces:
DataIterator, Iterator
All Known Implementing Classes:
ConcurrentMultiDataIterator, SerialMultiDataIterator

public interface MultiDataIterator extends DataIterator
A marker interface on top of the data source DataIterator which handles multiple data iterators.

Allows to get the underlying iterators. Note, this operation contract should only be called before any iteration has been perfomed on any of the internal iterators.

Author:
kimchy
  • Method Details

    • iterators

      DataIterator[] iterators()
      Returns the underlying iterators. Note, calling this method should only be performed if no iteration has happened.