Package org.apache.cassandra.utils
Class BulkIterator.Adapter<V>
- java.lang.Object
-
- org.apache.cassandra.utils.BulkIterator.Adapter<V>
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,BulkIterator<V>
- Enclosing interface:
- BulkIterator<V>
public static class BulkIterator.Adapter<V> extends java.lang.Object implements BulkIterator<V>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.cassandra.utils.BulkIterator
BulkIterator.Adapter<V>, BulkIterator.FromArray<V>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
fetch(java.lang.Object[] into, int offset, int count)
boolean
hasNext()
V
next()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.cassandra.utils.BulkIterator
close
-
-
-
-
Method Detail
-
fetch
public void fetch(java.lang.Object[] into, int offset, int count)
- Specified by:
fetch
in interfaceBulkIterator<V>
-
hasNext
public boolean hasNext()
-
next
public V next()
- Specified by:
next
in interfaceBulkIterator<V>
-
-