Package org.hibernate.sql.exec.spi
Interface Callback
-
- All Known Implementing Classes:
CallbackImpl
,CallbackNoOp
public interface Callback
Callback to allow SQM interpretation to trigger certain things within ORM. See the currentAfterLoadAction
javadocs for details. Specifically this would encompass things like follow-on locking, follow-on fetching, etc.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
invokeAfterLoadActions(SharedSessionContractImplementor session, Object entity, Loadable persister)
void
registerAfterLoadAction(AfterLoadAction afterLoadAction)
-
-
-
Method Detail
-
registerAfterLoadAction
void registerAfterLoadAction(AfterLoadAction afterLoadAction)
-
invokeAfterLoadActions
void invokeAfterLoadActions(SharedSessionContractImplementor session, Object entity, Loadable persister)
-
-