libdb/lang/sql/jdbc/SQLite/ProgressHandler.java

18 lines
349 B
Java
Raw Normal View History

2011-09-13 17:44:24 +00:00
package SQLite;
/**
* 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.<BR><BR>
*/
public boolean progress();
}