Interface IAggregateReader
-
- All Known Implementing Classes:
AlignedSeriesAggregateReader,SeriesAggregateReader
public interface IAggregateReader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancanUseCurrentChunkStatistics()booleancanUseCurrentFileStatistics()booleancanUseCurrentPageStatistics()only be used without value filterorg.apache.iotdb.tsfile.file.metadata.statistics.StatisticscurrentChunkStatistics()org.apache.iotdb.tsfile.file.metadata.statistics.StatisticscurrentFileStatistics()org.apache.iotdb.tsfile.file.metadata.statistics.StatisticscurrentPageStatistics()only be used without value filterbooleanhasNextChunk()booleanhasNextFile()booleanhasNextPage()booleanisAscending()org.apache.iotdb.tsfile.read.common.BatchDatanextPage()voidskipCurrentChunk()voidskipCurrentFile()voidskipCurrentPage()
-
-
-
Method Detail
-
hasNextFile
boolean hasNextFile() throws java.io.IOException- Throws:
java.io.IOException
-
canUseCurrentFileStatistics
boolean canUseCurrentFileStatistics() throws java.io.IOException- Throws:
java.io.IOException
-
currentFileStatistics
org.apache.iotdb.tsfile.file.metadata.statistics.Statistics currentFileStatistics() throws java.io.IOException- Throws:
java.io.IOException
-
skipCurrentFile
void skipCurrentFile()
-
hasNextChunk
boolean hasNextChunk() throws java.io.IOException- Throws:
java.io.IOException
-
canUseCurrentChunkStatistics
boolean canUseCurrentChunkStatistics() throws java.io.IOException- Throws:
java.io.IOException
-
currentChunkStatistics
org.apache.iotdb.tsfile.file.metadata.statistics.Statistics currentChunkStatistics() throws java.io.IOException- Throws:
java.io.IOException
-
skipCurrentChunk
void skipCurrentChunk()
-
hasNextPage
boolean hasNextPage() throws java.io.IOException- Throws:
java.io.IOException
-
canUseCurrentPageStatistics
boolean canUseCurrentPageStatistics() throws java.io.IOExceptiononly be used without value filter- Throws:
java.io.IOException
-
currentPageStatistics
org.apache.iotdb.tsfile.file.metadata.statistics.Statistics currentPageStatistics() throws java.io.IOExceptiononly be used without value filter- Throws:
java.io.IOException
-
skipCurrentPage
void skipCurrentPage()
-
nextPage
org.apache.iotdb.tsfile.read.common.BatchData nextPage() throws java.io.IOException- Throws:
java.io.IOException
-
isAscending
boolean isAscending()
-
-