类的使用
org.hibernate.engine.spi.CollectionEntry
-
使用CollectionEntry的程序包 程序包 说明 org.hibernate.engine.internal Support for many of the internal workings of Hibernate.org.hibernate.engine.spi -
-
org.hibernate.engine.internal中CollectionEntry的使用
返回CollectionEntry的org.hibernate.engine.internal中的方法 修饰符和类型 方法 说明 CollectionEntryStatefulPersistenceContext. addInitializedCollection(CollectionPersister persister, PersistentCollection collection, Serializable id)CollectionEntryStatefulPersistenceContext. getCollectionEntry(PersistentCollection coll)CollectionEntryStatefulPersistenceContext. getCollectionEntryOrNull(Object collection)CollectionEntryStatefulPersistenceContext. removeCollectionEntry(PersistentCollection collection)类型变量类型为CollectionEntry的org.hibernate.engine.internal中的方法参数 修饰符和类型 方法 说明 voidStatefulPersistenceContext. forEachCollectionEntry(BiConsumer<PersistentCollection,CollectionEntry> action, boolean concurrent) -
org.hibernate.engine.spi中CollectionEntry的使用
返回CollectionEntry的org.hibernate.engine.spi中的方法 修饰符和类型 方法 说明 CollectionEntryPersistenceContext. addInitializedCollection(CollectionPersister persister, PersistentCollection collection, Serializable 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. getCollectionEntryOrNull(Object collection)Get the collection entry for a collection passed to filter, which might be a collection wrapper, an array, or an unwrapped collection.CollectionEntryPersistenceContext. removeCollectionEntry(PersistentCollection collection)Remove aPersistentCollectionfrom thePersistenceContext.参数类型为CollectionEntry的org.hibernate.engine.spi中的方法 修饰符和类型 方法 说明 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 necessary类型变量类型为CollectionEntry的org.hibernate.engine.spi中的方法参数 修饰符和类型 方法 说明 voidPersistenceContext. forEachCollectionEntry(BiConsumer<PersistentCollection,CollectionEntry> action, boolean concurrent)Execute some action on each entry of the collectionEntries map, optionally iterating on a defensive copy.
-