Uses of Interface
org.hibernate.event.spi.PersistContext
-
Packages that use PersistContext Package Description org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.event.spi Defines the event types and event listener interfaces for events produced by the statefulSession. -
-
Uses of PersistContext in org.hibernate.engine.spi
Fields in org.hibernate.engine.spi with type parameters of type PersistContext Modifier and Type Field Description static CascadingAction<PersistContext>CascadingActions. PERSISTstatic CascadingAction<PersistContext>CascadingActions. PERSIST_ON_FLUSHExecute persist during flush timestatic CascadingAction<PersistContext>CascadingActions. SAVE_UPDATEMethods in org.hibernate.engine.spi with parameters of type PersistContext Modifier and Type Method Description voidSessionDelegatorBaseImpl. persist(String entityName, Object object, PersistContext createdAlready)voidSessionImplementor. persist(String entityName, Object object, PersistContext createdAlready)Deprecated.OperationalContext should cover this overload I believevoidSessionDelegatorBaseImpl. persistOnFlush(String entityName, Object object, PersistContext copiedAlready)voidSessionImplementor. persistOnFlush(String entityName, Object object, PersistContext copiedAlready)Deprecated.OperationalContext should cover this overload I believe -
Uses of PersistContext in org.hibernate.event.spi
Methods in org.hibernate.event.spi that return PersistContext Modifier and Type Method Description static PersistContextPersistContext. create()Methods in org.hibernate.event.spi with parameters of type PersistContext Modifier and Type Method Description voidPersistEventListener. onPersist(PersistEvent event, PersistContext createdAlready)Handle the given create event.voidEventSource. persist(String entityName, Object object, PersistContext createdAlready)Cascade persist an entity instancevoidEventSource. persistOnFlush(String entityName, Object object, PersistContext copiedAlready)Cascade persist an entity instance during the flush process
-