• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package SQLite;
2 
3 /**
4  * Callback interface for SQLite's user defined progress handler.
5  */
6 
7 public interface ProgressHandler {
8 
9     /**
10      * Invoked for N SQLite VM opcodes.
11      * The method should return true to continue the
12      * current query, or false in order
13      * to abandon the action.<BR><BR>
14      */
15 
progress()16     public boolean progress();
17 }
18