Uses of Interface
org.hibernate.engine.spi.EntityEntry
-
Packages that use EntityEntry 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.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.persister.entity.mutation Defines support for performing mutation operations originating from persistence-context events.org.hibernate.sql.results.graph.entity -
-
Uses of EntityEntry in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return EntityEntry Modifier and Type Method Description EntityEntryManagedEntity. $$_hibernate_getEntityEntry()Provides access to the associated EntityEntry.EntityEntryPersistenceContext. addEntity(Object entity, Status status, Object[] loadedState, EntityKey entityKey, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement)Adds an entity to the internal caches.EntityEntryPersistenceContext. addEntry(Object entity, Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement)Generates an appropriate EntityEntry instance and adds it to the event source's internal caches.EntityEntryEntityEntryFactory. createEntityEntry(Status status, Object[] loadedState, Object rowId, Object id, Object version, LockMode lockMode, boolean existsInDatabase, EntityPersister persister, boolean disableVersionIncrement, PersistenceContext persistenceContext)CreatesEntityEntry.EntityEntryPersistenceContext. getEntry(Object entity)Retrieve theEntityEntryrepresentation of the given entity.EntityEntryPersistenceContext. removeEntry(Object entity)Remove an entity entry from the session cacheMethods in org.hibernate.engine.spi that return types with arguments of type EntityEntry Modifier and Type Method Description Map.Entry<Object,EntityEntry>[]PersistenceContext. reentrantSafeEntityEntries()Provides access to the entity/EntityEntry combos associated with the persistence context in a manner that is safe from reentrant access.Methods in org.hibernate.engine.spi with parameters of type EntityEntry Modifier and Type Method Description voidManagedEntity. $$_hibernate_setEntityEntry(EntityEntry entityEntry)Injects the EntityEntry associated with this entity instance.default StringSharedSessionContractImplementor. bestGuessEntityName(Object object, EntityEntry entry)Obtain the best estimate of the entity name of the given entity instance, which is not involved in an association, by also considering information held in the proxy, and whether the object is already associated with this session.voidSessionDelegatorBaseImpl. forceFlush(EntityEntry e)voidSessionImplementor. forceFlush(EntityEntry e)Initiate a flush to force deletion of a re-persisted entity.voidPersistenceContext. setEntryStatus(EntityEntry entry, Status status)Set the status of an entryvoidActionQueue. unScheduleDeletion(EntityEntry entry, Object rescuedEntity) -
Uses of EntityEntry in org.hibernate.event.spi
Methods in org.hibernate.event.spi that return EntityEntry Modifier and Type Method Description EntityEntryFlushEntityEvent. getEntityEntry()EntityEntrySaveOrUpdateEvent. getEntry()Methods in org.hibernate.event.spi with parameters of type EntityEntry Modifier and Type Method Description voidEventManager. completeDirtyCalculationEvent(HibernateMonitoringEvent dirtyCalculationEvent, SharedSessionContractImplementor session, EntityPersister persister, EntityEntry entry, int[] dirtyProperties)voidEventSource. forceFlush(EntityEntry e)Force an immediate flushvoidFlushEntityEvent. resetAndReuseEventInstance(Object entity, EntityEntry entry)This is a terrible anti-pattern, but particular circumstances call for being able to reuse the same event instance: this is otherwise allocated in hot loops and since each event is escaping the scope it's actually causing allocation issues.voidSaveOrUpdateEvent. setEntry(EntityEntry entry)Constructors in org.hibernate.event.spi with parameters of type EntityEntry Constructor Description FlushEntityEvent(EventSource source, Object entity, EntityEntry entry) -
Uses of EntityEntry in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity with parameters of type EntityEntry Modifier and Type Method Description ObjectAbstractEntityPersister. getCollectionKey(CollectionPersister persister, Object owner, EntityEntry ownerEntry, SharedSessionContractImplementor session)protected ObjectAbstractEntityPersister. initializeLazyPropertiesFromCache(String fieldName, Object entity, SharedSessionContractImplementor session, EntityEntry entry, CacheEntry cacheEntry)protected ObjectAbstractEntityPersister. initializeLazyPropertiesFromDatastore(Object entity, Object id, EntityEntry entry, String fieldName, SharedSessionContractImplementor session)protected booleanAbstractEntityPersister. initializeLazyProperty(String fieldName, Object entity, EntityEntry entry, int index, Object propValue)Called by Hibernate Reactive -
Uses of EntityEntry in org.hibernate.persister.entity.mutation
Methods in org.hibernate.persister.entity.mutation with parameters of type EntityEntry Modifier and Type Method Description booleanUpdateCoordinatorStandard. isModifiableEntity(EntityEntry entry) -
Uses of EntityEntry in org.hibernate.sql.results.graph.entity
Methods in org.hibernate.sql.results.graph.entity with parameters of type EntityEntry Modifier and Type Method Description protected voidAbstractEntityInitializer. takeSnapshot(RowProcessingState rowProcessingState, SharedSessionContractImplementor session, PersistenceContext persistenceContext, EntityEntry entityEntry)
-