Interface PerSSTableIndexWriter
-
- All Known Implementing Classes:
SSTableComponentsWriter
public interface PerSSTableIndexWriter
Writes all SSTable-attached index files. The files written are version specific.
-
-
Field Summary
Fields Modifier and Type Field Description static PerSSTableIndexWriter
NONE
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
abort()
default void
complete()
void
nextRow(PrimaryKey primaryKey)
default void
startPartition(DecoratedKey decoratedKey)
-
-
-
Field Detail
-
NONE
static final PerSSTableIndexWriter NONE
-
-
Method Detail
-
startPartition
default void startPartition(DecoratedKey decoratedKey) throws java.io.IOException
- Throws:
java.io.IOException
-
nextRow
void nextRow(PrimaryKey primaryKey) throws java.io.IOException
- Throws:
java.io.IOException
-
complete
default void complete() throws java.io.IOException
- Throws:
java.io.IOException
-
abort
default void abort()
-
-