EditionProvider
Interface to get the the editions available since the latest feed update, see Editions.updateFeed.
Functions
Coroutine version of EditionProvider.edition.
Returns a map of the form {year: {month: count}}
, where count
is the count of Editions that month. You can narrow the results down with productTags. An empty map is returned on errors.
Coroutine version of EditionProvider.editionCounts.
Method for getting editions. It returns a Paginator object that can be used to iterate over the requested editions. Editions are sorted by date with newer editions first. You can specify filters productTags, startDate (date >= startDate), endDate (date < endDate) and a page size pageSize for the paginator. When pageSize is null, the method will return a Paginator with ALL the Editions matching the filters in a single Page.