HHH-9204 HHH-9205 : Restore AbstractCollectionPersister.doProcessQueuedOps() removed by HHH-9078; deprecate method added by HHH-9078
(cherry picked from commit 420296fd26
)
Conflicts:
hibernate-core/src/main/java/org/hibernate/persister/collection/AbstractCollectionPersister.java
This commit is contained in:
parent
436206356f
commit
75a84220d3
|
@ -1639,9 +1639,27 @@ public abstract class AbstractCollectionPersister
|
|||
doProcessQueuedOps( collection, key, nextIndex, session );
|
||||
}
|
||||
}
|
||||
|
||||
protected abstract void doProcessQueuedOps(PersistentCollection collection, Serializable key,
|
||||
int nextIndex, SessionImplementor session) throws HibernateException;
|
||||
|
||||
/**
|
||||
* Process queued operations within the PersistentCollection.
|
||||
*
|
||||
* @param collection The collection
|
||||
* @param key The collection key
|
||||
* @param nextIndex The next index to write
|
||||
* @param session The session
|
||||
* @throws HibernateException
|
||||
*
|
||||
* @deprecated Use {@link #doProcessQueuedOps(org.hibernate.collection.spi.PersistentCollection, java.io.Serializable, org.hibernate.engine.spi.SessionImplementor)}
|
||||
*/
|
||||
@Deprecated
|
||||
protected void doProcessQueuedOps(PersistentCollection collection, Serializable key,
|
||||
int nextIndex, SessionImplementor session)
|
||||
throws HibernateException {
|
||||
doProcessQueuedOps( collection, key, session );
|
||||
}
|
||||
|
||||
protected abstract void doProcessQueuedOps(PersistentCollection collection, Serializable key, SessionImplementor session)
|
||||
throws HibernateException;
|
||||
|
||||
public CollectionMetadata getCollectionMetadata() {
|
||||
return this;
|
||||
|
|
|
@ -154,8 +154,7 @@ public class BasicCollectionPersister extends AbstractCollectionPersister {
|
|||
}
|
||||
|
||||
@Override
|
||||
protected void doProcessQueuedOps(PersistentCollection collection, Serializable id,
|
||||
int nextIndex, SessionImplementor session)
|
||||
protected void doProcessQueuedOps(PersistentCollection collection, Serializable id, SessionImplementor session)
|
||||
throws HibernateException {
|
||||
// nothing to do
|
||||
}
|
||||
|
|
|
@ -192,9 +192,9 @@ public class OneToManyPersister extends AbstractCollectionPersister {
|
|||
}
|
||||
|
||||
@Override
|
||||
protected void doProcessQueuedOps(PersistentCollection collection, Serializable id,
|
||||
int nextIndex, SessionImplementor session) throws HibernateException {
|
||||
writeIndex( collection, collection.queuedAdditionIterator(), id, nextIndex, session );
|
||||
protected void doProcessQueuedOps(PersistentCollection collection, Serializable id, SessionImplementor session)
|
||||
throws HibernateException {
|
||||
writeIndex( collection, collection.queuedAdditionIterator(), id, getSize( id, session ), session );
|
||||
}
|
||||
|
||||
private void writeIndex(PersistentCollection collection, Iterator entries, Serializable id,
|
||||
|
|
Loading…
Reference in New Issue