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

commonMain.it.unibo.tuprolog.solve.channel.Channel.kt Maven / Gradle / Ivy

package it.unibo.tuprolog.solve.channel

import kotlin.js.JsName

interface Channel {
    @JsName("addListener")
    fun addListener(listener: Listener)

    @JsName("removeListener")
    fun removeListener(listener: Listener)

    @JsName("clearListeners")
    fun clearListeners()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy