Package org.apache.commons.dbcp.managed
Interface TransactionContextListener
-
public interface TransactionContextListenerA listener for transaction completion events.- Version:
- $Revision$
- Author:
- Dain Sundstrom
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidafterCompletion(TransactionContext transactionContext, boolean commited)Occurs after the transaction commits or rolls back.
-
-
-
Method Detail
-
afterCompletion
void afterCompletion(TransactionContext transactionContext, boolean commited)
Occurs after the transaction commits or rolls back.- Parameters:
transactionContext- the transaction context that completedcommited- true if the transaction committed; false otherwise
-
-