Package iterator
Overview ▹
▹ Example (PageLoop)
▹ Example (PageToken)
▹ Example (ServerPages)
▹ Example (WebHandler)
Index ▹
Variables
Done is returned by an iterator's Next method when the iteration is complete; when there are no more items to return.
var Done = errors.New("no more items in iterator")
NewPageInfo exposes internals for iterator implementations. It is not a stable interface.
var NewPageInfo = newPageInfo
type PageInfo ¶
PageInfo contains information about an iterator's paging state.
type PageInfo struct { // Token is the token used to retrieve the next page of items from the // API. You may set Token immediately after creating an iterator to // begin iteration at a particular point. If Token is the empty string, // the iterator will begin with the first eligible item. // // The result of setting Token after the first call to Next is undefined. // // After the underlying API method is called to retrieve a page of items, // Token is set to the next-page token in the response. Token string // MaxSize is the maximum number of items returned by a call to the API. // Set MaxSize as a hint to optimize the buffering behavior of the iterator. // If zero, the page size is determined by the underlying service. // // Use Pager to retrieve a page of a specific, exact size. MaxSize int // contains filtered or unexported fields }
func (*PageInfo) Remaining ¶
func (pi *PageInfo) Remaining() int
Remaining returns the number of items available before the iterator makes another API call.
type Pageable ¶
Pageable is implemented by iterators that support paging.
type Pageable interface {
// PageInfo returns paging information associated with the iterator.
PageInfo() *PageInfo
}
type Pager ¶
Pager supports retrieving iterator items a page at a time.
type Pager struct {
// contains filtered or unexported fields
}
func NewPager ¶
func NewPager(iter Pageable, pageSize int, pageToken string) *Pager
NewPager returns a pager that uses iter. Calls to its NextPage method will obtain exactly pageSize items, unless fewer remain. The pageToken argument indicates where to start the iteration. Pass the empty string to start at the beginning, or pass a token retrieved from a call to Pager.NextPage.
If you use an iterator with a Pager, you must not call Next on the iterator.
func (*Pager) NextPage ¶
func (p *Pager) NextPage(slicep interface{}) (nextPageToken string, err error)
NextPage retrieves a sequence of items from the iterator and appends them to slicep, which must be a pointer to a slice of the iterator's item type. Exactly p.pageSize items will be appended, unless fewer remain.
The first return value is the page token to use for the next page of items. If empty, there are no more pages. Aside from checking for the end of the iteration, the returned page token is only needed if the iteration is to be resumed a later time, in another context (possibly another process).
The second return value is non-nil if an error occurred. It will never be the special iterator sentinel value Done. To recognize the end of the iteration, compare nextPageToken to the empty string.
It is possible for NextPage to return a single zero-length page along with an empty page token when there are no more items in the iteration.