You are here

protected function FeedsExJmesPathLines::executeContext in Feeds extensible parsers 7.2

Returns rows to be parsed.

Parameters

FeedsSource $source: Source information.

FeedsFetcherResult $fetcher_result: The result returned by the fetcher.

Return value

array|Traversable Some iterable that returns rows.

Overrides FeedsExJmesPath::executeContext

File

src/FeedsExJmesPathLines.inc, line 23
Contains FeedsExJmesPathLines.

Class

FeedsExJmesPathLines
Parses JSON Lines documents with JMESPath.

Code

protected function executeContext(FeedsSource $source, FeedsFetcherResult $fetcher_result) {
  return $this->iterator;
}