Package org.apache.cassandra.db.memtable
Class AbstractMemtable.ColumnsCollector
- java.lang.Object
-
- org.apache.cassandra.db.memtable.AbstractMemtable.ColumnsCollector
-
- Enclosing class:
- AbstractMemtable
protected static class AbstractMemtable.ColumnsCollector extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RegularAndStaticColumns
get()
Get the current state of the columns set.void
update(AbstractMemtable.ColumnsCollector other)
void
update(RegularAndStaticColumns columns)
-
-
-
Method Detail
-
update
public void update(RegularAndStaticColumns columns)
-
update
public void update(AbstractMemtable.ColumnsCollector other)
-
get
public RegularAndStaticColumns get()
Get the current state of the columns set. Note: If this is executed while mutations are still being performed on the table (e.g. to prepare an sstable for streaming when Memtable.Factory.streamFromMemtable() is true), the resulting view may be in a somewhat inconsistent state (it may include partial updates, as well as miss updates older than ones it does include).
-
-