Interface TransactionListener
public interface TransactionListener
An interface for objects that want to be notified
when transactions in the TransactionSet are added,
removed, or modified.
-
Method Summary
Modifier and Type Method Description void
transactionAdded(AbstractTxn t)
Called after a transaction has been added to the transaction set.void
transactionModified(AbstractTxn t)
Called after a transaction has been modified.void
transactionRemoved(AbstractTxn t)
Called after a transaction has been removed from the transaction set.
-
Method Details
-
transactionRemoved
Called after a transaction has been removed from the transaction set. -
transactionAdded
Called after a transaction has been added to the transaction set. -
transactionModified
Called after a transaction has been modified.
-