Package org.nuxeo.ecm.blob.azure
Class AzureBlobScroll
- java.lang.Object
-
- org.nuxeo.ecm.core.blob.scroll.AbstractBlobScroll<AzureBlobProvider>
-
- org.nuxeo.ecm.blob.azure.AzureBlobScroll
-
- All Implemented Interfaces:
AutoCloseable
,Iterator<List<String>>
,Scroll
public class AzureBlobScroll extends AbstractBlobScroll<AzureBlobProvider>
Scroll blobs of the Azure blob store of aAzureBlobProvider
, the scroll query is the provider id.- Since:
- 2023.6
-
-
Field Summary
Fields Modifier and Type Field Description protected com.microsoft.azure.storage.ResultContinuation
continuationToken
protected com.microsoft.azure.storage.ResultSegment<com.microsoft.azure.storage.blob.ListBlobItem>
lbs
protected int
prefixLength
protected AzureBlobStore
store
-
Fields inherited from class org.nuxeo.ecm.core.blob.scroll.AbstractBlobScroll
isKeyPrefixed, keyStrategy, providerId, size, SIZE_DELIMITER, totalBlobCount, totalBlobSizeCount
-
-
Constructor Summary
Constructors Constructor Description AzureBlobScroll()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
protected void
init(AzureBlobProvider provider)
List<String>
next()
-
Methods inherited from class org.nuxeo.ecm.core.blob.scroll.AbstractBlobScroll
addTo, close, getBlobKey, getBlobSize, init
-
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
-
-
-
-
Field Detail
-
store
protected AzureBlobStore store
-
prefixLength
protected int prefixLength
-
lbs
protected com.microsoft.azure.storage.ResultSegment<com.microsoft.azure.storage.blob.ListBlobItem> lbs
-
continuationToken
protected com.microsoft.azure.storage.ResultContinuation continuationToken
-
-
Method Detail
-
init
protected void init(AzureBlobProvider provider)
- Specified by:
init
in classAbstractBlobScroll<AzureBlobProvider>
-
hasNext
public boolean hasNext()
-
-