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
All Methods Instance Methods Abstract Methods 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 Detail
-
transactionRemoved
void transactionRemoved(AbstractTxn t)
Called after a transaction has been removed from the transaction set.
-
transactionAdded
void transactionAdded(AbstractTxn t)
Called after a transaction has been added to the transaction set.
-
transactionModified
void transactionModified(AbstractTxn t)
Called after a transaction has been modified.
-
-