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 aList
of elements in the page.
-
Method Details
-
getElements
- Specified by:
getElements
in interfacecom.azure.core.util.paging.ContinuablePage<String,
BlobChangefeedEvent>
-
getValue
Gets aList
of elements in the page.- Returns:
- A
List
containing 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:
getContinuationToken
in interfacecom.azure.core.util.paging.ContinuablePage<String,
BlobChangefeedEvent> - Returns:
- The
cursor
that references the next page.
-