Feedistiller.Limits (feedistiller v3.2.0)

Limits on the number of items to retrieve and the date range of items.

  • from: only items newer than this date are retrieved (default is :oldest for no limit)
  • to: only items older than this date are retrieved (default is :latest for not limit)
  • max: maximum number of items to retrieve (default is :unlimited for no limit)

Link to this section Summary

Link to this section Types

Specs

t() :: %Feedistiller.Limits{
  from: DateTime.t() | :oldest,
  max: integer() | :unlimited,
  to: DateTime.t() | :latest
}