Package org.apache.cassandra.db
Interface CellSourceIdentifier
- All Known Implementing Classes:
AbstractAllocatorMemtable,AbstractMemtable,AbstractMemtableWithCommitlog,AbstractShardedMemtable,SequenceBasedSSTableId,ShardedSkipListMemtable,SkipListMemtable,TrieMemtable,UUIDBasedSSTableId
public interface CellSourceIdentifier
A cell's source data object. Can be used to determine if two cells originated from the same object, e.g. memtable
or sstable.
-
Method Summary
Modifier and TypeMethodDescriptiondefault booleanReturns true iff this and other CellSourceIdentifier are equal, indicating that the cell are from the same source.
-
Method Details
-
isEqualSource
Returns true iff this and other CellSourceIdentifier are equal, indicating that the cell are from the same source.- Parameters:
other- the other source with which to compare- Returns:
- true if the two sources are equal
-