Class Filter
- java.lang.Object
-
- org.apache.cassandra.db.transform.Transformation
-
- org.apache.cassandra.db.transform.Filter
-
public final class Filter extends Transformation
-
-
Constructor Summary
Constructors Constructor Description Filter(int nowInSec, boolean enforceStrictLiveness)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected RangeTombstoneMarkerapplyToMarker(RangeTombstoneMarker marker)Applied to any RTM we encounter in a rows/unfiltered iteratorprotected RowIteratorapplyToPartition(BaseRowIterator iterator)Applied to any rows iterator (partition) we encounter in a partitions iteratorprotected RowapplyToRow(Row row)Applied to any row we encounter in a rows iteratorprotected RowapplyToStatic(Row row)Applied to the static row of any rows iterator.-
Methods inherited from class org.apache.cassandra.db.transform.Transformation
apply, apply, apply, apply, applyToDeletion, applyToPartitionColumns, applyToPartitionKey, onClose, onPartitionClose
-
-
-
-
Method Detail
-
applyToPartition
protected RowIterator applyToPartition(BaseRowIterator iterator)
Description copied from class:TransformationApplied to any rows iterator (partition) we encounter in a partitions iterator- Overrides:
applyToPartitionin classTransformation
-
applyToStatic
protected Row applyToStatic(Row row)
Description copied from class:TransformationApplied to the static row of any rows iterator. NOTE that this is only applied to the first iterator in any sequence of iterators filled by a MoreContents; the static data for such iterators is all expected to be equal- Overrides:
applyToStaticin classTransformation
-
applyToRow
protected Row applyToRow(Row row)
Description copied from class:TransformationApplied to any row we encounter in a rows iterator- Overrides:
applyToRowin classTransformation
-
applyToMarker
protected RangeTombstoneMarker applyToMarker(RangeTombstoneMarker marker)
Description copied from class:TransformationApplied to any RTM we encounter in a rows/unfiltered iterator- Overrides:
applyToMarkerin classTransformation
-
-