@Managed public abstract class ObjectNotifier extends java.lang.Object
Locked object notifier
This notifier is used to access all locked objects in a transaction. The abstract method is called once for each locked object in a transaction.
The ObjectNotifier is executed using the ObjectServices::runObjectNotifier static method.
Typically, the ObjectNotifier is used in conjunction with the TransactionNotifier to process objects at prepare or commit time.
| Constructor and Description |
|---|
ObjectNotifier()
Create a new ObjectNotifier
|
| Modifier and Type | Method and Description |
|---|---|
abstract void |
inTransaction(java.lang.Object obj)
Called for each object locked in
a transaction.
|
public ObjectNotifier()
public abstract void inTransaction(java.lang.Object obj)
Called for each object locked in a transaction.
obj - Object that locked.
Called for all objects locked in a transaction. [ const ]