From b4e9dafd10f2f962cf9000f6fe9e167804aa4fc9 Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Mon, 22 Jul 2013 10:23:47 +0200 Subject: [PATCH] add missing hint about lifecycle callback --- docs/en/reference/events.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/reference/events.rst b/docs/en/reference/events.rst index 517f2ec5b..1d5351563 100644 --- a/docs/en/reference/events.rst +++ b/docs/en/reference/events.rst @@ -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::