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

org.gawst.asyncdb.purge.PurgeHandler Maven / Gradle / Ivy

Go to download

A set of helper class to keep a copy of small SQLite databases in memory in Android

There is a newer version: 3.1.1
Show newest version
package org.gawst.asyncdb.purge;

import org.gawst.asyncdb.AsynchronousDbHelper;

/**
* Interface for database purge handlers.
*/
public interface PurgeHandler {
	/**
	 * Called anytime an element(s) is added to the database.
	 * 

Called in the database worker thread.

* @param db The {@link org.gawst.asyncdb.AsynchronousDbHelper} to purge. */ void onElementsAdded(AsynchronousDbHelper db); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy