Uses of Class
org.hibernate.engine.spi.CollectionEntry
-
Packages that use CollectionEntry Package Description org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate. -
-
Uses of CollectionEntry in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return CollectionEntry Modifier and Type Method Description CollectionEntryPersistenceContext. addInitializedCollection(CollectionPersister persister, PersistentCollection<?> collection, Object id)add a collection we just pulled out of the cache (does not need initializing)static CollectionEntryCollectionEntry. deserialize(ObjectInputStream ois, SessionImplementor session)Custom deserialization routine used during deserialization of a Session/PersistenceContext for increased performance.CollectionEntryPersistenceContext. getCollectionEntry(PersistentCollection<?> coll)Get the collection entry for a persistent collectionCollectionEntryPersistenceContext. removeCollectionEntry(PersistentCollection<?> collection)Remove aPersistentCollectionfrom thePersistenceContext.Methods in org.hibernate.engine.spi that return types with arguments of type CollectionEntry Modifier and Type Method Description @Nullable Map<PersistentCollection<?>,CollectionEntry>PersistenceContext. getCollectionEntries()Doubly internalMethods in org.hibernate.engine.spi with parameters of type CollectionEntry Modifier and Type Method Description voidBatchFetchQueue. addBatchLoadableCollection(PersistentCollection<?> collection, CollectionEntry ce)If a CollectionEntry represents a batch loadable collection, add it to the queue.voidBatchFetchQueue. removeBatchLoadableCollection(CollectionEntry ce)After a collection was initialized or evicted, we don't need to batch fetch it anymore, remove it from the queue if necessaryMethod parameters in org.hibernate.engine.spi with type arguments of type CollectionEntry Modifier and Type Method Description voidPersistenceContext. forEachCollectionEntry(BiConsumer<PersistentCollection<?>,CollectionEntry> action, boolean concurrent)Execute some action on each entry of the collectionEntries map, optionally iterating on a defensive copy.
-