Back to project page InMemoryDb.
The source code is released under:
Apache License
If you think the Android project InMemoryDb listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.gawst.asyncdb.purge; // w w w .ja va 2s .c o m import org.gawst.asyncdb.AsynchronousDbHelper; /** * Interface for database purge handlers. */ public interface PurgeHandler { /** * Called anytime an element(s) is added to the database. * <p>Called in the database worker thread.</p> * @param db The {@link org.gawst.asyncdb.AsynchronousDbHelper} to purge. */ void onElementsAdded(AsynchronousDbHelper<?, ?> db); }