blob: b2ec7c08e6223523e876d6236332bb901026926c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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();
}
|