[prefix_]postProcessFeed
Use this function to perform any operations at the end of processing the feed. If paging is performed using the functions getFeedUrlParameters
and getNextUrlParameters
, this function is only called after the last page. If paging parameters are set in the URL by the getFeedUrls
function and updated using the getNextUrls
or getNextUrlXPaths
, then this function will be called after each page.
Inputs: | xml (XmlDocument) |
Outputs: | [NONE] |
See also: |
[prefix_]getFeedUrlParameters
|
Example
function myPrefix_postProcessFeed(xml) local latestid = get_feed_param("LATEST_ID") set_datastore_feed_param("LATEST_ID", latestid) end