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

androidMain.tech.skot.view.live.MutableSKLiveData.kt Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
package tech.skot.view.live

import kotlin.reflect.KProperty

open class MutableSKLiveData(initialValue: D) : SKLiveData(initialValue) {
    fun postValue(newVal: D) {
        this.value = newVal
    }

    operator fun setValue(thisObj: Any?, property: KProperty<*>, value: D) {
        this.value = value
    }

    operator fun getValue(thisObj: Any?, property: KProperty<*>) = this.value
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy