commonMain.com.arkivanov.mvikotlin.rx.internal.Subject.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rx-internal Show documentation
Show all versions of rx-internal Show documentation
Kotlin Multiplatform MVI framework
The newest version!
package com.arkivanov.mvikotlin.rx.internal
import com.arkivanov.mvikotlin.rx.Disposable
import com.arkivanov.mvikotlin.rx.Observer
import kotlin.js.JsName
interface Subject : Observer {
val isActive: Boolean
@JsName("subscribe")
fun subscribe(observer: Observer): Disposable
// @MainThread
override fun onNext(value: T) {
}
// @MainThread
override fun onComplete() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy