📄 scheduledcollectionrecreate.java
字号:
//$Id: ScheduledCollectionRecreate.java,v 1.6.2.6 2003/12/27 07:16:00 oneovthafew Exp $package net.sf.hibernate.impl;import java.io.Serializable;import net.sf.hibernate.HibernateException;import net.sf.hibernate.cache.CacheException;import net.sf.hibernate.collection.CollectionPersister;import net.sf.hibernate.collection.PersistentCollection;import net.sf.hibernate.engine.SessionImplementor;final class ScheduledCollectionRecreate extends ScheduledCollectionAction implements SessionImpl.Executable { private final PersistentCollection collection; public ScheduledCollectionRecreate(PersistentCollection collection, CollectionPersister persister, Serializable id, SessionImplementor session) throws CacheException { super(persister, id, session); this.collection = collection; } public void execute() throws HibernateException { getPersister().recreate( collection, getId(), getSession() ); evict(); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -