Package org.apache.openjpa.event
Interface PostPersistListener
-
public interface PostPersistListener
- Since:
- 1.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterPersistPerformed(LifecycleEvent event)
Receives notifications after a persist operation has been written to the data store.
-
-
-
Method Detail
-
afterPersistPerformed
void afterPersistPerformed(LifecycleEvent event)
Receives notifications after a persist operation has been written to the data store. Differs fromPersistListener.afterPersist(org.apache.openjpa.event.LifecycleEvent)
in that the latter is called at the end of the persist() operation itself, not after the flush.
-
-