Interface SyndFeedClient

    • Method Detail

      • readRss

        SyndFeed readRss​(URI uri,
                         boolean onlyNew)

        Fetches an RSS feed from the given location and caches the result.

        If onlyNew is set to true, the to-be-returned feed is modified to include only new entries; that is, items that don't exist in the previously cached feed, if any. Take caution when using this option as eventually, the cache's contents may eventually spill over if it becomes over-populated.

        Parameters:
        uri - where to fetch the RSS feed from
        onlyNew - set to true if feed should only include un-cached feed items
        Returns:
        retrieved feed
        Throws:
        IllegalArgumentException - if url is invalid
      • readRss

        default SyndFeed readRss​(String uri,
                                 boolean onlyNew)