Uses of Interface
org.datanucleus.transaction.TransactionEventListener
-
Packages that use TransactionEventListener Package Description org.datanucleus This package provides classes that are typically externally called, whether that means by developers or by other DataNucleus plugins.org.datanucleus.transaction Package providing support specific to transactions for DataNucleus. -
-
Uses of TransactionEventListener in org.datanucleus
Classes in org.datanucleus that implement TransactionEventListener Modifier and Type Class Description class
ExecutionContextImpl
Manager for persistence/retrieval of objects within an execution context, equating to the work required by JDO PersistenceManager and JPA EntityManager.class
ExecutionContextThreadedImpl
ExecutionContext to attempt to handle multi-threaded PM/EM cases. -
Uses of TransactionEventListener in org.datanucleus.transaction
Fields in org.datanucleus.transaction declared as TransactionEventListener Modifier and Type Field Description private TransactionEventListener
TransactionImpl. ecListener
Listener to inform the ExecutionContext of transaction events.Fields in org.datanucleus.transaction with type parameters of type TransactionEventListener Modifier and Type Field Description private java.util.Set<TransactionEventListener>
TransactionImpl. listenersPerTransaction
Listeners for the lifecycle of the active transaction.private java.util.List<TransactionEventListener>
TransactionImpl. userListeners
Listeners that apply to all transactions.Methods in org.datanucleus.transaction that return TransactionEventListener Modifier and Type Method Description private TransactionEventListener[]
TransactionImpl. getListenersForEvent()
Methods in org.datanucleus.transaction with parameters of type TransactionEventListener Modifier and Type Method Description void
Transaction. addTransactionEventListener(TransactionEventListener listener)
Adds a transaction listener.void
TransactionImpl. addTransactionEventListener(TransactionEventListener listener)
void
Transaction. bindTransactionEventListener(TransactionEventListener listener)
Listeners that are never cleared, and invoked for all transactionsvoid
TransactionImpl. bindTransactionEventListener(TransactionEventListener listener)
void
Transaction. removeTransactionEventListener(TransactionEventListener listener)
Removes the specified listener.void
TransactionImpl. removeTransactionEventListener(TransactionEventListener listener)
-