Uses of Interface
org.hibernate.cache.CacheConcurrencyStrategy

Packages that use CacheConcurrencyStrategy
org.hibernate.cache This package defines APIs and implementations for the second-level cache and query cache. 
org.hibernate.persister A persister defines a mapping strategy for a collection or entity. 
org.hibernate.persister.collection This package abstracts the persistence mechanism for collections. 
org.hibernate.persister.entity This package abstracts persistence mechanisms for entities, and defines the Hibernate runtime metamodel. 
 

Uses of CacheConcurrencyStrategy in org.hibernate.cache
 

Classes in org.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 org.hibernate.cache that return CacheConcurrencyStrategy
static CacheConcurrencyStrategy CacheFactory.createCache(String concurrencyStrategy, String regionName, boolean mutable, Settings settings, Properties properties)
           
 

Uses of CacheConcurrencyStrategy in org.hibernate.persister
 

Methods in org.hibernate.persister with parameters of type CacheConcurrencyStrategy
static EntityPersister PersisterFactory.createClassPersister(PersistentClass model, CacheConcurrencyStrategy cache, SessionFactoryImplementor factory, Mapping cfg)
           
static CollectionPersister PersisterFactory.createCollectionPersister(Configuration cfg, Collection model, CacheConcurrencyStrategy cache, SessionFactoryImplementor factory)
           
 

Uses of CacheConcurrencyStrategy in org.hibernate.persister.collection
 

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

Constructors in org.hibernate.persister.collection with parameters of type CacheConcurrencyStrategy
AbstractCollectionPersister(Collection collection, CacheConcurrencyStrategy cache, Configuration cfg, SessionFactoryImplementor factory)
           
BasicCollectionPersister(Collection collection, CacheConcurrencyStrategy cache, Configuration cfg, SessionFactoryImplementor factory)
           
OneToManyPersister(Collection collection, CacheConcurrencyStrategy cache, Configuration cfg, SessionFactoryImplementor factory)
           
 

Uses of CacheConcurrencyStrategy in org.hibernate.persister.entity
 

Methods in org.hibernate.persister.entity that return CacheConcurrencyStrategy
 CacheConcurrencyStrategy EntityPersister.getCache()
          Get the cache (optional operation)
 CacheConcurrencyStrategy AbstractEntityPersister.getCache()
           
 

Constructors in org.hibernate.persister.entity with parameters of type CacheConcurrencyStrategy
AbstractEntityPersister(PersistentClass persistentClass, CacheConcurrencyStrategy cache, SessionFactoryImplementor factory)
           
JoinedSubclassEntityPersister(PersistentClass persistentClass, CacheConcurrencyStrategy cache, SessionFactoryImplementor factory, Mapping mapping)
           
SingleTableEntityPersister(PersistentClass persistentClass, CacheConcurrencyStrategy cache, SessionFactoryImplementor factory, Mapping mapping)
           
UnionSubclassEntityPersister(PersistentClass persistentClass, CacheConcurrencyStrategy cache, SessionFactoryImplementor factory, Mapping mapping)