Interface TransactionListener


public interface TransactionListener
An interface for listening to transactions
  • Method Details Link icon

    • transactionStarted Link icon

      void transactionStarted(DomainObjectAdapterDB domainObj, TransactionInfo tx)
      Invoked when a transaction is started.
      Parameters:
      domainObj - the domain object where the transaction was started
      tx - the transaction that was started
    • transactionEnded Link icon

      void transactionEnded(DomainObjectAdapterDB domainObj)
      Invoked when a transaction is ended.
      Parameters:
      domainObj - the domain object where the transaction was ended
    • undoStackChanged Link icon

      void undoStackChanged(DomainObjectAdapterDB domainObj)
      Invoked when the stack of available undo/redo's has changed.
      Parameters:
      domainObj - the affected domain object
    • undoRedoOccurred Link icon

      void undoRedoOccurred(DomainObjectAdapterDB domainObj)
      Notification that undo or redo has occurred.
      Parameters:
      domainObj - the affected domain object