Package org.apache.druid.storage.azure
Class AzureCloudBlobIterator
- java.lang.Object
-
- org.apache.druid.storage.azure.AzureCloudBlobIterator
-
- All Implemented Interfaces:
Iterator<CloudBlobHolder>
public class AzureCloudBlobIterator extends Object implements Iterator<CloudBlobHolder>
This iterator is computed incrementally in batches ofmaxListingLength
. The first call is made at the same time the iterator is constructed.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
CloudBlobHolder
next()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining, remove
-
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceIterator<CloudBlobHolder>
-
next
public CloudBlobHolder next()
- Specified by:
next
in interfaceIterator<CloudBlobHolder>
-
-