You are here

public function FeedsProcessor::getLimit in Feeds 7.2

Report number of items that can be processed per call.

0 means 'unlimited'.

If a number other than 0 is given, Feeds parsers that support batching will only deliver this limit to the processor.

See also

FeedsSource::getLimit()

FeedsCSVParser::parse()

File

plugins/FeedsProcessor.inc, line 702
Contains FeedsProcessor and related classes.

Class

FeedsProcessor
Abstract class, defines interface for processors.

Code

public function getLimit() {
  return variable_get('feeds_process_limit', FEEDS_PROCESS_LIMIT);
}