Class IndexSummaryBuilder.ReadableBoundary
- java.lang.Object
-
- org.apache.cassandra.io.sstable.indexsummary.IndexSummaryBuilder.ReadableBoundary
-
- Enclosing class:
- IndexSummaryBuilder
public static class IndexSummaryBuilder.ReadableBoundary extends java.lang.Object
Represents a boundary that is guaranteed fully readable in the summary, index file and data file. The key contained is the last key readable if the index and data files have been flushed to the stored lengths.
-
-
Field Summary
Fields Modifier and Type Field Description long
dataLength
long
entriesLength
long
indexLength
DecoratedKey
lastKey
int
summaryCount
-
Constructor Summary
Constructors Constructor Description ReadableBoundary(DecoratedKey lastKey, long indexLength, long dataLength, int summaryCount, long entriesLength)
-
-
-
Field Detail
-
lastKey
public final DecoratedKey lastKey
-
indexLength
public final long indexLength
-
dataLength
public final long dataLength
-
summaryCount
public final int summaryCount
-
entriesLength
public final long entriesLength
-
-
Constructor Detail
-
ReadableBoundary
public ReadableBoundary(DecoratedKey lastKey, long indexLength, long dataLength, int summaryCount, long entriesLength)
-
-