Uses of Class
org.apache.cassandra.db.rows.Row.Deletion
-
Packages that use Row.Deletion Package Description org.apache.cassandra.db.rows -
-
Uses of Row.Deletion in org.apache.cassandra.db.rows
Fields in org.apache.cassandra.db.rows declared as Row.Deletion Modifier and Type Field Description protected Row.Deletion
BTreeRow.Builder. deletion
static Row.Deletion
Row.Deletion. LIVE
Methods in org.apache.cassandra.db.rows that return Row.Deletion Modifier and Type Method Description Row.Deletion
BTreeRow. deletion()
Row.Deletion
Row. deletion()
The row deletion.static Row.Deletion
Row.Deletion. regular(DeletionTime time)
static Row.Deletion
Row.Deletion. shadowable(DeletionTime time)
Deprecated.Methods in org.apache.cassandra.db.rows with parameters of type Row.Deletion Modifier and Type Method Description void
BTreeRow.Builder. addRowDeletion(Row.Deletion deletion)
void
Row.Builder. addRowDeletion(Row.Deletion deletion)
Adds the deletion information for this row.static BTreeRow
BTreeRow. create(Clustering<?> clustering, LivenessInfo primaryKeyLivenessInfo, Row.Deletion deletion, java.lang.Object[] btree)
static BTreeRow
BTreeRow. create(Clustering<?> clustering, LivenessInfo primaryKeyLivenessInfo, Row.Deletion deletion, java.lang.Object[] btree, int minDeletionTime)
static BTreeRow
BTreeRow. emptyDeletedRow(Clustering<?> clustering, Row.Deletion deletion)
void
RowDiffListener. onDeletion(int i, Clustering<?> clustering, Row.Deletion merged, Row.Deletion original)
Called for the row deletion of inputi
.boolean
Row.Deletion. supersedes(Row.Deletion that)
Row
BTreeRow. transformAndFilter(LivenessInfo info, Row.Deletion deletion, java.util.function.Function<ColumnData,ColumnData> function)
Row
Row. transformAndFilter(LivenessInfo info, Row.Deletion deletion, java.util.function.Function<ColumnData,ColumnData> function)
Requires thatfunction
returns eithernull
orColumnData
for the same column.
-