com.abubusoft.kripton.androidx.livedata.KriptonXLiveData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kripton-android-core Show documentation
Show all versions of kripton-android-core Show documentation
Kripton Persistence Library for Android platform - core module for android modules
package com.abubusoft.kripton.androidx.livedata;
import androidx.lifecycle.MutableLiveData;
public class KriptonXLiveData extends MutableLiveData {
public void updateValue(T value) {
this.postValue(value);
}
}