-
public interface SQLiteTransactionListenerA listener for transaction events.
-
-
Method Summary
Modifier and Type Method Description abstract voidonBegin()Called immediately after the transaction begins. abstract voidonCommit()Called immediately before commiting the transaction. abstract voidonRollback()Called if the transaction is about to be rolled back. -
-
Method Detail
-
onBegin
abstract void onBegin()
Called immediately after the transaction begins.
-
onCommit
abstract void onCommit()
Called immediately before commiting the transaction.
-
onRollback
abstract void onRollback()
Called if the transaction is about to be rolled back.
-
-
-
-