Uses of Interface
org.apache.openjpa.datacache.DataCachePCData
-
Packages that use DataCachePCData Package Description org.apache.openjpa.datacache OpenJPA Data Cache -
-
Uses of DataCachePCData in org.apache.openjpa.datacache
Classes in org.apache.openjpa.datacache that implement DataCachePCData Modifier and Type Class Description class
DataCachePCDataImpl
SpecializedPCData
implementation for data caching.Methods in org.apache.openjpa.datacache that return DataCachePCData Modifier and Type Method Description DataCachePCData
AbstractDataCache. get(java.lang.Object key)
DataCachePCData
DataCache. get(java.lang.Object oid)
Return the cached object for the given oid.DataCachePCData
DelegatingDataCache. get(java.lang.Object oid)
protected abstract DataCachePCData
AbstractDataCache. getInternal(java.lang.Object oid)
Return the object for the given oid.protected DataCachePCData
ConcurrentDataCache. getInternal(java.lang.Object key)
DataCachePCData
AbstractDataCache. put(DataCachePCData data)
DataCachePCData
DataCache. put(DataCachePCData value)
Set the cached value for the given instance.DataCachePCData
DelegatingDataCache. put(DataCachePCData value)
protected abstract DataCachePCData
AbstractDataCache. putInternal(java.lang.Object oid, DataCachePCData pc)
Add the given object to the cache, returning the old object under the given oid.protected DataCachePCData
ConcurrentDataCache. putInternal(java.lang.Object key, DataCachePCData pc)
DataCachePCData
AbstractDataCache. remove(java.lang.Object key)
DataCachePCData
DataCache. remove(java.lang.Object oid)
Remove the value stored under the given oid.DataCachePCData
DelegatingDataCache. remove(java.lang.Object oid)
protected abstract DataCachePCData
AbstractDataCache. removeInternal(java.lang.Object oid)
Remove the object under the given oid from the cache.protected DataCachePCData
ConcurrentDataCache. removeInternal(java.lang.Object key)
Methods in org.apache.openjpa.datacache that return types with arguments of type DataCachePCData Modifier and Type Method Description java.util.Map<java.lang.Object,DataCachePCData>
AbstractDataCache. getAll(java.util.List<java.lang.Object> keys)
Returns the objects for the given key List.java.util.Map<java.lang.Object,DataCachePCData>
DataCache. getAll(java.util.List<java.lang.Object> keys)
Gets objects from the caches for a given list of keys.java.util.Map<java.lang.Object,DataCachePCData>
DelegatingDataCache. getAll(java.util.List<java.lang.Object> keys)
Methods in org.apache.openjpa.datacache with parameters of type DataCachePCData Modifier and Type Method Description DataCachePCData
AbstractDataCache. put(DataCachePCData data)
DataCachePCData
DataCache. put(DataCachePCData value)
Set the cached value for the given instance.DataCachePCData
DelegatingDataCache. put(DataCachePCData value)
protected abstract DataCachePCData
AbstractDataCache. putInternal(java.lang.Object oid, DataCachePCData pc)
Add the given object to the cache, returning the old object under the given oid.protected DataCachePCData
ConcurrentDataCache. putInternal(java.lang.Object key, DataCachePCData pc)
void
AbstractDataCache. update(DataCachePCData data)
void
DataCache. update(DataCachePCData value)
Update the cached value for the given instance.void
DelegatingDataCache. update(DataCachePCData value)
Method parameters in org.apache.openjpa.datacache with type arguments of type DataCachePCData Modifier and Type Method Description void
AbstractDataCache. commit(java.util.Collection<DataCachePCData> additions, java.util.Collection<DataCachePCData> newUpdates, java.util.Collection<DataCachePCData> existingUpdates, java.util.Collection<java.lang.Object> deletes)
void
DataCache. commit(java.util.Collection<DataCachePCData> additions, java.util.Collection<DataCachePCData> newUpdates, java.util.Collection<DataCachePCData> existingUpdates, java.util.Collection<java.lang.Object> deletes)
Perform a batch update of the cache.void
DelegatingDataCache. commit(java.util.Collection<DataCachePCData> additions, java.util.Collection<DataCachePCData> newUpdates, java.util.Collection<DataCachePCData> existingUpdates, java.util.Collection<java.lang.Object> deletes)
protected void
AbstractDataCache. putAllInternal(java.util.Collection<DataCachePCData> pcs)
Add all of the given objects to the cache.
-