Interface SQLiteTransactionListener

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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
    • Constructor Detail

    • 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.