You are here

public function FeedsImporter::getLimit in Feeds 7.2

Reports how many items *should* be created on one request by this importer.

Note:

It depends on whether parser implements batching if this limit is actually respected. Further, if no limit is reported it doesn't mean that the number of items that can be created on one page load is actually without limit.

Return value

int A positive number defining the number of items that can be created on one page load. 0 if this number is unlimited.

File

includes/FeedsImporter.inc, line 102
FeedsImporter class and related.

Class

FeedsImporter
Class for a Feeds importer.

Code

public function getLimit() {
  return $this->processor
    ->getLimit();
}