Interface NextPageFetcher<T>

Type Parameters:
T - the type of elements in BitbucketPage

public interface NextPageFetcher<T>
In order to support multiple paging, implementation should provide a way to fetch next page based on previous page.
  • Method Summary

    Modifier and Type
    Method
    Description
    next(BitbucketPage<T> previous)
    Returns the next page based on a page.
  • Method Details

    • next

      BitbucketPage<T> next(BitbucketPage<T> previous)
      Returns the next page based on a page.
      Parameters:
      previous - the previous page
      Returns:
      the next page.