Interface RssFeedRenderer

All Known Implementing Classes:
DefaultItunesPodcastRenderer, DefaultRssFeedRenderer
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface RssFeedRenderer
Interface which defines the render of an RssChannel to Writer.
Since:
1.0
Author:
Sergio del Amo
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    render(Writer writer, RssChannel rssChannel)
    Writes an RSS channel to a Writer.
  • Method Details

    • render

      void render(Writer writer, RssChannel rssChannel)
      Writes an RSS channel to a Writer.
      Parameters:
      rssChannel - The RSS channel to render
      writer - A Writer to write the RSS feed into