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

commonMain.com.arkivanov.mvikotlin.rx.Observer.kt Maven / Gradle / Ivy

package com.arkivanov.mvikotlin.rx

import kotlin.js.JsName

/**
 * Represents an observer of values
 */
interface Observer {

    /**
     * Called for every value
     */
    @JsName("onNext")
    fun onNext(value: T)

    /**
     * Called when the stream is completed
     */
    fun onComplete()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy