Interface ReaperMonitor
-
public interface ReaperMonitorAn 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmarkedRollbackOnly(Uid txId)The indicated transaction has been marked as rollback-only by the reaper.voidrolledBack(Uid txId)The indicated transaction has been rolled back by the reaper.
-
-
-
Method Detail
-
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.
-
-