Interface HistogramIterator

All Superinterfaces:
AutoCloseable, Iterator<HistogramRecord>
All Known Implementing Classes:
RdbHistogramIterator

public interface HistogramIterator extends AutoCloseable, Iterator<HistogramRecord>
Iterator over histogram records The iterator offers a partial ordering - for one column the records are sorted by time
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Close the iterator
    void
    seek(byte[] columnValue, long time)
     

    Methods inherited from interface java.util.Iterator

    forEachRemaining, hasNext, next, remove
  • Method Details

    • seek

      void seek(byte[] columnValue, long time)
    • close

      void close()
      Close the iterator
      Specified by:
      close in interface AutoCloseable