Uses of Interface
com.spotify.github.async.AsyncPage
-
Packages that use AsyncPage Package Description com.spotify.github.async com.spotify.github.v3.clients -
-
Uses of AsyncPage in com.spotify.github.async
Methods in com.spotify.github.async that return AsyncPage Modifier and Type Method Description AsyncPage<T>
AsyncPage. clone()
Clone page object.Methods in com.spotify.github.async that return types with arguments of type AsyncPage Modifier and Type Method Description CompletableFuture<AsyncPage<T>>
AsyncPage. nextPage()
Next page.Method parameters in com.spotify.github.async with type arguments of type AsyncPage Modifier and Type Method Description static <T> Stream<T>
Async. streamFromPaginatingIterable(Iterable<AsyncPage<T>> iterable)
-
Uses of AsyncPage in com.spotify.github.v3.clients
Classes in com.spotify.github.v3.clients that implement AsyncPage Modifier and Type Class Description class
GithubPage<T>
Async page implementation for github resourcesMethods in com.spotify.github.v3.clients that return AsyncPage Modifier and Type Method Description AsyncPage<T>
GithubPage. clone()
Clone page object.AsyncPage<T>
GithubPageIterator. next()
Methods in com.spotify.github.v3.clients that return types with arguments of type AsyncPage Modifier and Type Method Description Iterator<AsyncPage<Branch>>
RepositoryClient. listAllBranches()
List all branches in repositoryIterator<AsyncPage<Repository>>
RepositoryClient. listAuthenticatedUserRepositories(AuthenticatedUserRepositoriesFilter filter)
List repositories for the authenticated user.Iterator<AsyncPage<Comment>>
IssueClient. listComments()
List repository comments.Iterator<AsyncPage<Comment>>
IssueClient. listComments(int number)
List given issue number comments.Iterator<AsyncPage<Status>>
RepositoryClient. listCommitStatuses(String sha, int itemsPerPage)
List statuses for a specific ref.Iterator<AsyncPage<Review>>
PullRequestClient. listReviews(int number, int itemsPerPage)
List pull request reviews paginated.Iterator<AsyncPage<User>>
TeamClient. listTeamMembers(String slug, int pageSize)
List members of a specific team.CompletableFuture<AsyncPage<T>>
GithubPage. nextPage()
Next page.Constructors in com.spotify.github.v3.clients with parameters of type AsyncPage Constructor Description GithubPageIterator(AsyncPage<T> initialPage)
C'tor.
-