Interface TransactionListener


  • public interface TransactionListener
    A listener interface to get called back when a transaction is being terminated
    Author:
    Ludovic Orban
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void afterCommit()
      This method gets called right after the transaction is committed
      void afterRollback()
      This method gets called right after the transaction is rolled back
      void beforeCommit()
      This method gets called right before the transaction is committed
    • Method Detail

      • beforeCommit

        void beforeCommit()
        This method gets called right before the transaction is committed
      • afterCommit

        void afterCommit()
        This method gets called right after the transaction is committed
      • afterRollback

        void afterRollback()
        This method gets called right after the transaction is rolled back