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 classDataCachePCDataImplSpecializedPCDataimplementation for data caching.Methods in org.apache.openjpa.datacache that return DataCachePCData Modifier and Type Method Description DataCachePCDataAbstractDataCache. get(java.lang.Object key)DataCachePCDataDataCache. get(java.lang.Object oid)Return the cached object for the given oid.DataCachePCDataDelegatingDataCache. get(java.lang.Object oid)protected abstract DataCachePCDataAbstractDataCache. getInternal(java.lang.Object oid)Return the object for the given oid.protected DataCachePCDataConcurrentDataCache. getInternal(java.lang.Object key)DataCachePCDataAbstractDataCache. put(DataCachePCData data)DataCachePCDataDataCache. put(DataCachePCData value)Set the cached value for the given instance.DataCachePCDataDelegatingDataCache. put(DataCachePCData value)protected abstract DataCachePCDataAbstractDataCache. putInternal(java.lang.Object oid, DataCachePCData pc)Add the given object to the cache, returning the old object under the given oid.protected DataCachePCDataConcurrentDataCache. putInternal(java.lang.Object key, DataCachePCData pc)DataCachePCDataAbstractDataCache. remove(java.lang.Object key)DataCachePCDataDataCache. remove(java.lang.Object oid)Remove the value stored under the given oid.DataCachePCDataDelegatingDataCache. remove(java.lang.Object oid)protected abstract DataCachePCDataAbstractDataCache. removeInternal(java.lang.Object oid)Remove the object under the given oid from the cache.protected DataCachePCDataConcurrentDataCache. 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 DataCachePCDataAbstractDataCache. put(DataCachePCData data)DataCachePCDataDataCache. put(DataCachePCData value)Set the cached value for the given instance.DataCachePCDataDelegatingDataCache. put(DataCachePCData value)protected abstract DataCachePCDataAbstractDataCache. putInternal(java.lang.Object oid, DataCachePCData pc)Add the given object to the cache, returning the old object under the given oid.protected DataCachePCDataConcurrentDataCache. putInternal(java.lang.Object key, DataCachePCData pc)voidAbstractDataCache. update(DataCachePCData data)voidDataCache. update(DataCachePCData value)Update the cached value for the given instance.voidDelegatingDataCache. update(DataCachePCData value)Method parameters in org.apache.openjpa.datacache with type arguments of type DataCachePCData Modifier and Type Method Description voidAbstractDataCache. commit(java.util.Collection<DataCachePCData> additions, java.util.Collection<DataCachePCData> newUpdates, java.util.Collection<DataCachePCData> existingUpdates, java.util.Collection<java.lang.Object> deletes)voidDataCache. 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.voidDelegatingDataCache. commit(java.util.Collection<DataCachePCData> additions, java.util.Collection<DataCachePCData> newUpdates, java.util.Collection<DataCachePCData> existingUpdates, java.util.Collection<java.lang.Object> deletes)protected voidAbstractDataCache. putAllInternal(java.util.Collection<DataCachePCData> pcs)Add all of the given objects to the cache.
-