Interface ContinuablePage<C,T>

Type Parameters:
C - Type of the continuation token.
T - Type of the elements in the page.
All Known Subinterfaces:
Page<T>, PagedResponse<T>
All Known Implementing Classes:
AutocompletePagedResponse, BlobChangefeedPagedResponse, FeedResponse, PagedResponseBase, SearchPagedResponse, SuggestPagedResponse

public interface ContinuablePage<C,T>
Represents a page returned, this page may contain a reference to additional pages known as a continuation token.
See Also:
  • Method Details

    • getElements

      IterableStream<T> getElements()
      Gets an IterableStream of elements in the page.
      Returns:
      An IterableStream containing the elements in the page.
    • getContinuationToken

      C getContinuationToken()
      Gets the reference to the next page.
      Returns:
      The next page reference or null if there isn't a next page.