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; // www.ja v a 2s .c om /** * Interface for operations run in the internal thread of the {@link AsynchronousDbHelper} via * {@link AsynchronousDbHelper#scheduleCustomOperation(AsynchronousDbOperation) scheduleCustomOperation()} */ public interface AsynchronousDbOperation { /** * Callback of the operation to run in the internal thread of {@code db} * * @param db on which this operation is processed */ void runInMemoryDbOperation(AsynchronousDbHelper<?, ?> db); }