Interface ReaperMonitor


public interface ReaperMonitor
An instance of this interface will be called whenever a transaction is either timed-out or set rollback-only by the transaction reaper.
Author:
marklittle
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    The indicated transaction has been marked as rollback-only by the reaper.
    void
    The indicated transaction has been rolled back by the reaper.
  • Method Details

    • rolledBack

      void rolledBack(Uid txId)
      The indicated transaction has been rolled back by the reaper.
      Parameters:
      txId - the transaction id.
    • markedRollbackOnly

      void markedRollbackOnly(Uid txId)
      The indicated transaction has been marked as rollback-only by the reaper.
      Parameters:
      txId - the transaction id.