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