Class PartitionUpdate.CounterMark
- java.lang.Object
-
- org.apache.cassandra.db.partitions.PartitionUpdate.CounterMark
-
- Enclosing class:
- PartitionUpdate
public static class PartitionUpdate.CounterMark extends java.lang.ObjectA counter mark is basically a pointer to a counter update inside this partition update. That pointer allows us to update the counter value based on the pre-existing value read during the read-before-write that counters do. SeeCounterMutationto understand how this is used.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Clustering<?>clustering()ColumnMetadatacolumn()CellPathpath()voidsetValue(java.nio.ByteBuffer value)java.nio.ByteBuffervalue()
-
-
-
Method Detail
-
clustering
public Clustering<?> clustering()
-
column
public ColumnMetadata column()
-
path
public CellPath path()
-
value
public java.nio.ByteBuffer value()
-
setValue
public void setValue(java.nio.ByteBuffer value)
-
-