Interface UnfilteredPartitionIterator
-
- All Superinterfaces:
java.lang.AutoCloseable
,BasePartitionIterator<UnfilteredRowIterator>
,CloseableIterator<UnfilteredRowIterator>
,java.util.Iterator<UnfilteredRowIterator>
- All Known Subinterfaces:
ISSTableScanner
- All Known Implementing Classes:
AbstractUnfilteredPartitionIterator
,BigTableScanner
,BigTableScanner.EmptySSTableScanner
,CassandraValidationIterator
,CompactionIterator
,Memtable.MemtableUnfilteredPartitionIterator
,SingletonUnfilteredPartitionIterator
,ValidationPartitionIterator
public interface UnfilteredPartitionIterator extends BasePartitionIterator<UnfilteredRowIterator>
An iterator over a number of unfiltered partitions (i.e. partitions containing deletion informations). The object returned by a call to next() is only guaranteed to be valid until the next call to hasNext() or next(). If a consumer wants to keep a reference on the returned objects for longer than the iteration, it must make a copy of it explicitely.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableMetadata
metadata()
-
Methods inherited from interface org.apache.cassandra.db.partitions.BasePartitionIterator
close
-
-
-
-
Method Detail
-
metadata
TableMetadata metadata()
-
-