Package org.hibernate.sql.exec.spi
Interface Callback
-
- All Known Implementing Classes:
CallbackImpl,CallbackNoOp
public interface CallbackCallback to allow SQM interpretation to trigger certain things within ORM. See the currentAfterLoadActionjavadocs 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 voidinvokeAfterLoadActions(SharedSessionContractImplementor session, Object entity, Loadable persister)voidregisterAfterLoadAction(AfterLoadAction afterLoadAction)
-
-
-
Method Detail
-
registerAfterLoadAction
void registerAfterLoadAction(AfterLoadAction afterLoadAction)
-
invokeAfterLoadActions
void invokeAfterLoadActions(SharedSessionContractImplementor session, Object entity, Loadable persister)
-
-