com.abubusoft.kripton.android.livedata.KriptonLiveData 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.android.livedata;
import android.arch.lifecycle.MutableLiveData;
/**
* The Class KriptonLiveData.
*
* @author Francesco Benincasa ([email protected])
* @param
* the generic type
*/
public class KriptonLiveData extends MutableLiveData {
/**
* Update value.
*
* @param value
* the value
*/
public void updateValue(T value) {
this.postValue(value);
}
}