Package io.micronaut.rss
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.
Interface which defines the render of an
RssChannel to Writer.- Since:
- 1.0
- Author:
- Sergio del Amo
-
Method Summary
Modifier and TypeMethodDescriptionvoidrender(Writer writer, RssChannel rssChannel) Writes an RSS channel to aWriter.
-
Method Details
-
render
Writes an RSS channel to aWriter.- Parameters:
rssChannel- The RSS channel to renderwriter- A Writer to write the RSS feed into
-