Uses of Interface
org.apache.openjpa.datacache.DataCache
-
Packages that use DataCache Package Description org.apache.openjpa.datacache OpenJPA Data Cacheorg.apache.openjpa.instrumentation org.apache.openjpa.meta OpenJPA Metadataorg.apache.openjpa.persistence OpenJPA JPA -
-
Uses of DataCache in org.apache.openjpa.datacache
Classes in org.apache.openjpa.datacache that implement DataCache Modifier and Type Class Description class
AbstractDataCache
AbstractDataCache
implementation that provides various statistics, logging, and timeout functionality common across cache implementations.class
ConcurrentDataCache
ADataCache
implementation that is optimized for concurrent access.class
DelegatingDataCache
Delegating data cache that can also perform exception translation for use in facades.class
PartitionedDataCache
A partitioned data cache maintains a set of partitions that are DataCache themselves.Methods in org.apache.openjpa.datacache that return DataCache Modifier and Type Method Description DataCache
DataCacheManager. getDataCache(java.lang.String name)
Return the named data cache, or null if it does not exist.DataCache
DataCacheManager. getDataCache(java.lang.String name, boolean create)
Return the named data cache.DataCache
DataCacheManagerImpl. getDataCache(java.lang.String name)
DataCache
DataCacheManagerImpl. getDataCache(java.lang.String name, boolean create)
Returns the named cache.DataCache
DelegatingDataCache. getDelegate()
Return the direct delegate.DataCache
DelegatingDataCache. getInnermostDelegate()
Return the native delegate.DataCache
AbstractDataCache. getPartition(java.lang.String name, boolean create)
DataCache
DataCache. getPartition(java.lang.String name, boolean create)
Gets the named partition.DataCache
DelegatingDataCache. getPartition(java.lang.String name, boolean create)
DataCache
PartitionedDataCache. getPartition(java.lang.String name, boolean create)
DataCache
DataCacheManager. getSystemDataCache()
Return the system-wide data cache, or null if caching is not enabled.DataCache
DataCacheManagerImpl. getSystemDataCache()
DataCache
AbstractDataCache. selectCache(OpenJPAStateManager sm)
DataCache
DataCacheManager. selectCache(OpenJPAStateManager sm)
Select the cache where the given managed proxy instance should be cached.DataCache
DataCacheManagerImpl. selectCache(OpenJPAStateManager sm)
Select cache for the given managed instance.Constructors in org.apache.openjpa.datacache with parameters of type DataCache Constructor Description DelegatingDataCache(DataCache cache)
Constructor.DelegatingDataCache(DataCache cache, RuntimeExceptionTranslator trans)
-
Uses of DataCache in org.apache.openjpa.instrumentation
Methods in org.apache.openjpa.instrumentation with parameters of type DataCache Modifier and Type Method Description void
AbstractDataCacheInstrument. setDataCache(DataCache dc)
-
Uses of DataCache in org.apache.openjpa.meta
Methods in org.apache.openjpa.meta that return DataCache Modifier and Type Method Description DataCache
ClassMetaData. getDataCache()
Return the data cache for this class, or null if it is not cachable. -
Uses of DataCache in org.apache.openjpa.persistence
Methods in org.apache.openjpa.persistence that return DataCache Modifier and Type Method Description DataCache
StoreCache. getDelegate()
Deprecated.cast toStoreCacheImpl
instead.DataCache
StoreCacheImpl. getDelegate()
Delegate.Constructors in org.apache.openjpa.persistence with parameters of type DataCache Constructor Description StoreCacheImpl(EntityManagerFactoryImpl emf, DataCache cache)
Constructor; supply delegate.
-