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

com.abubusoft.kripton.android.livedata.KriptonLiveData Maven / Gradle / Ivy

Go to download

Kripton Persistence Library for Android platform - core module for android modules

There is a newer version: 8.2.0-rc.4
Show newest version
/**
 * 
 */
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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy