class FixedSizeCollection implements IteratorAggregate

A collection of elements retrieved using one or more API calls. The collection will attempt to retrieve a fixed number of elements, and will make API calls until that fixed number is reached, or there are no more elements to retrieve.

Methods

__construct(Page $initialPage, integer $collectionSize)

FixedSizeCollection constructor.

getCollectionSize()

Returns the number of elements in the collection. This will be equal to the collectionSize parameter used at construction unless there are no elements remaining to be retrieved.

hasNextCollection()

Returns true if there are more elements that can be retrieved from the API.

getNextPageToken()

Returns a page token that can be passed into the API list method to retrieve additional elements.

getNextCollection()

Retrieves the next FixedSizeCollection using one or more API calls.

getIterator()

Returns an iterator over the elements of the collection.

iterateCollections()

Returns an iterator over FixedSizeCollections, starting with this and making API calls as required until all of the elements have been retrieved.

Details

at line 54
__construct(Page $initialPage, integer $collectionSize)

FixedSizeCollection constructor.

Parameters

Page $initialPage
integer $collectionSize

at line 79
getCollectionSize()

Returns the number of elements in the collection. This will be equal to the collectionSize parameter used at construction unless there are no elements remaining to be retrieved.

at line 92
hasNextCollection()

Returns true if there are more elements that can be retrieved from the API.

at line 101
getNextPageToken()

Returns a page token that can be passed into the API list method to retrieve additional elements.

at line 109
getNextCollection()

Retrieves the next FixedSizeCollection using one or more API calls.

at line 119
getIterator()

Returns an iterator over the elements of the collection.

at line 133
iterateCollections()

Returns an iterator over FixedSizeCollections, starting with this and making API calls as required until all of the elements have been retrieved.