diff options
Diffstat (limited to 'sql/src/main/java/SQLite/BusyHandler.java')
-rw-r--r-- | sql/src/main/java/SQLite/BusyHandler.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/sql/src/main/java/SQLite/BusyHandler.java b/sql/src/main/java/SQLite/BusyHandler.java deleted file mode 100644 index c39b39d..0000000 --- a/sql/src/main/java/SQLite/BusyHandler.java +++ /dev/null @@ -1,20 +0,0 @@ -package SQLite; - -/** - * Callback interface for SQLite's user defined busy handler. - */ - -public interface BusyHandler { - - /** - * Invoked when a table is locked by another process - * or thread. The method should return true for waiting - * until the table becomes unlocked, or false in order - * to abandon the action.<BR><BR> - * - * @param table the name of the locked table - * @param count number of times the table was locked - */ - - public boolean busy(String table, int count); -} |