org.sqlite.event
クラス BusyHandler

java.lang.Object
  上位を拡張 org.sqlite.callback.Callback
      上位を拡張 org.sqlite.event.BusyHandler

public abstract class BusyHandler
extends Callback

SQLITE_BUSY Error Handler class.

関連項目:
Register A Callback To Handle SQLITE_BUSY Errors

コンストラクタの概要
BusyHandler()
           
 
メソッドの概要
protected abstract  int xBusy(int count)
          Called from the sqlite3_step() function.
 
クラス org.sqlite.callback.Callback から継承されたメソッド
isRegistered
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

BusyHandler

public BusyHandler()
メソッドの詳細

xBusy

protected abstract int xBusy(int count)
Called from the sqlite3_step() function.

パラメータ:
count - the number of times that the busy handler has been invoked for this locking event.
戻り値:
non-zero if the operation is continued. 0 if the operation is interrupted.