com.abubusoft.kripton.android.LiveDataHandler 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;
public interface LiveDataHandler {
/**
* Invalidates the LiveData.
*
* When there are active observers, this will trigger a call to
* {@link #compute()}.
*/
void invalidate();
}