1
0
mirror of synced 2025-01-18 22:41:43 +03:00

add missing hint about lifecycle callback

This commit is contained in:
David Buchmann 2013-07-22 10:23:47 +02:00
parent fbbb161987
commit b4e9dafd10

View File

@ -173,7 +173,7 @@ the life-time of their registered entities.
database or after the refresh operation has been applied to it.
- loadClassMetadata - The loadClassMetadata event occurs after the
mapping metadata for a class has been loaded from a mapping source
(annotations/xml/yaml).
(annotations/xml/yaml). This event is not a lifecycle callback.
- preFlush - The preFlush event occurs at the very beginning of a flush
operation. This event is not a lifecycle callback.
- onFlush - The onFlush event occurs after the change-sets of all
@ -183,7 +183,7 @@ the life-time of their registered entities.
event is not a lifecycle callback.
- onClear - The onClear event occurs when the EntityManager#clear() operation is
invoked, after all references to entities have been removed from the unit of
work.
work. This event is not a lifecycle callback.
.. warning::