mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-17 01:26:25 +00:00
17 lines
349 B
Java
17 lines
349 B
Java
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();
|
|
}
|