public static interface Index.Indexer
| Modifier and Type | Method and Description | 
|---|---|
| void | begin()Notification of the start of a partition update. | 
| void | finish()Notification of the end of the partition update. | 
| void | insertRow(Row row)Notification that a new row was inserted into the Memtable holding the partition. | 
| void | partitionDelete(DeletionTime deletionTime)Notification of a top level partition delete. | 
| void | rangeTombstone(RangeTombstone tombstone)Notification of a RangeTombstone. | 
| void | removeRow(Row row)Notification that a row was removed from the partition. | 
| void | updateRow(Row oldRowData,
         Row newRowData)Notification of a modification to a row in the base table's Memtable. | 
void begin()
void partitionDelete(DeletionTime deletionTime)
deletionTime - void rangeTombstone(RangeTombstone tombstone)
tombstone - void insertRow(Row row)
row - the Row being inserted into the base table's Memtable.void updateRow(Row oldRowData, Row newRowData)
oldRowData - data that was present in existing row and which has been removed from
                   the base table's MemtablenewRowData - data that was not present in the existing row and is being inserted
                   into the base table's Memtablevoid removeRow(Row row)
row - data being removed from the base tablevoid finish()
Copyright © 2018 The Apache Software Foundation