Class BlobChangefeedPagedResponse
java.lang.Object
com.azure.storage.blob.changefeed.BlobChangefeedPagedResponse
- All Implemented Interfaces:
com.azure.core.util.paging.ContinuablePage<String,BlobChangefeedEvent>
public class BlobChangefeedPagedResponse
extends Object
implements com.azure.core.util.paging.ContinuablePage<String,BlobChangefeedEvent>
Represents a page returned in BlobChangefeed.
A BlobChangefeedPagedResponse consists of BlobChangefeedEvent elements and String
cursor.
A cursor can be used to re-initialize a BlobChangefeed to point to the next expected page.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionGets a reference to the next page, should you want to re-initialize the BlobChangefeed.com.azure.core.util.IterableStream<BlobChangefeedEvent> getValue()Gets aListof elements in the page.
-
Method Details
-
getElements
- Specified by:
getElementsin interfacecom.azure.core.util.paging.ContinuablePage<String,BlobChangefeedEvent>
-
getValue
Gets aListof elements in the page.- Returns:
- A
Listcontaining the elements in the page.
-
getContinuationToken
Gets a reference to the next page, should you want to re-initialize the BlobChangefeed. To resume with the continuation token, callBlobChangefeedAsyncClient.getEvents(String)orBlobChangefeedClient.getEvents(String).- Specified by:
getContinuationTokenin interfacecom.azure.core.util.paging.ContinuablePage<String,BlobChangefeedEvent> - Returns:
- The
cursorthat references the next page.
-