Package 

Interface SQLiteTransactionListener

    • Method Summary

      Modifier and Type Method Description
      abstract void onBegin() Called immediately after the transaction begins.
      abstract void onCommit() Called immediately before commiting the transaction.
      abstract void onRollback() Called if the transaction is about to be rolled back.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.