Interface SQLiteTransactionListener


  • public interface SQLiteTransactionListener
    A listener for transaction events.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void onBegin()
      Called immediately after the transaction begins.
      void onCommit()
      Called immediately before commiting the transaction.
      void onRollback()
      Called if the transaction is about to be rolled back.
    • Method Detail

      • onBegin

        void onBegin()
        Called immediately after the transaction begins.
      • onCommit

        void onCommit()
        Called immediately before commiting the transaction.
      • onRollback

        void onRollback()
        Called if the transaction is about to be rolled back.