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. -
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<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.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.
-