jsqlite.ProgressHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spatialite-android Show documentation
Show all versions of spatialite-android Show documentation
Vector map library written in Java - running on Android and Desktop.
package jsqlite;
/**
* Callback interface for SQLite's user defined progress handler.
*/
public interface ProgressHandler {
/**
* Invoked for N SQLite VM opcodes.
* The method should return true to continue the
* current query, or false in order
* to abandon the action.
*/
public boolean progress();
}