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 Detail

      • next

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