All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.com.prof18.rssparser.internal.FeedHandler.kt Maven / Gradle / Ivy

package com.prof18.rssparser.internal

import com.prof18.rssparser.model.RssChannel
import org.xml.sax.Attributes

internal interface FeedHandler {
    fun onStartRssElement(
        qName: String?,
        attributes: Attributes?,
    )

    fun endElement(
        qName: String?,
        text: String,
    )

    fun buildRssChannel(): RssChannel
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy