站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 2.1.8 正式版 API 英文文档

Uses of Interface net.sf.hibernate.cache.CacheConcurrencyStrategy (Hibernate API Documentation) - Hibernate 2.1.8 正式版 API 英文文档


Uses of Interface
net.sf.hibernate.cache.CacheConcurrencyStrategy

Packages that use CacheConcurrencyStrategy
net.sf.hibernate.cache   
net.sf.hibernate.cfg   
net.sf.hibernate.collection   
net.sf.hibernate.mapping   
net.sf.hibernate.persister   
 

Uses of CacheConcurrencyStrategy in net.sf.hibernate.cache
 

Classes in net.sf.hibernate.cache that implement CacheConcurrencyStrategy
 class NonstrictReadWriteCache
          Caches data that is sometimes updated without ever locking the cache.
 class ReadOnlyCache
          Caches data that is never updated.
 class ReadWriteCache
          Caches data that is sometimes updated while maintaining the semantics of "read committed" isolation level.
 class TransactionalCache
          Support for fully transactional cache implementations like JBoss TreeCache.
 

Methods in net.sf.hibernate.cache that return CacheConcurrencyStrategy
static CacheConcurrencyStrategy CacheFactory.createCache(org.dom4j.Element node, String name, boolean mutable)
           
 

Uses of CacheConcurrencyStrategy in net.sf.hibernate.cfg
 

Methods in net.sf.hibernate.cfg with parameters of type CacheConcurrencyStrategy
 void Mappings.addCache(String name, CacheConcurrencyStrategy cache)
           
 Configuration Configuration.setCacheConcurrencyStrategy(Class clazz, CacheConcurrencyStrategy concurrencyStrategy)
          Set up a cache for an entity class
 Configuration Configuration.setCacheConcurrencyStrategy(String collectionRole, CacheConcurrencyStrategy concurrencyStrategy)
          Set up a cache for a collection role
 

Uses of CacheConcurrencyStrategy in net.sf.hibernate.collection
 

Methods in net.sf.hibernate.collection that return CacheConcurrencyStrategy
 CacheConcurrencyStrategy CollectionPersister.getCache()
          Get the cache
 CacheConcurrencyStrategy AbstractCollectionPersister.getCache()
           
 

Uses of CacheConcurrencyStrategy in net.sf.hibernate.mapping
 

Methods in net.sf.hibernate.mapping that return CacheConcurrencyStrategy
 CacheConcurrencyStrategy Subclass.getCache()
           
 CacheConcurrencyStrategy RootClass.getCache()
           
abstract  CacheConcurrencyStrategy PersistentClass.getCache()
           
 CacheConcurrencyStrategy Collection.getCache()
           
 

Methods in net.sf.hibernate.mapping with parameters of type CacheConcurrencyStrategy
 void RootClass.setCache(CacheConcurrencyStrategy cache)
           
 void Collection.setCache(CacheConcurrencyStrategy cache)
          Sets the cache.
 

Uses of CacheConcurrencyStrategy in net.sf.hibernate.persister
 

Methods in net.sf.hibernate.persister that return CacheConcurrencyStrategy
 CacheConcurrencyStrategy ClassPersister.getCache()
          Get the cache (optional operation)
 CacheConcurrencyStrategy AbstractEntityPersister.getCache()