Liferay 7.0-ce-m3

Uses of Interface
com.liferay.portal.kernel.cache.PortalCache

Packages that use PortalCache
com.liferay.portal.cache   
com.liferay.portal.cache.cluster   
com.liferay.portal.cache.ehcache   
com.liferay.portal.cache.memory   
com.liferay.portal.cache.mvcc   
com.liferay.portal.cache.transactional   
com.liferay.portal.dao.orm.common   
com.liferay.portal.kernel.cache   
com.liferay.portal.kernel.dao.orm   
com.liferay.portal.nio.intraband.cache   
com.liferay.portal.service.persistence.impl This package defines the portal service persistence implementation base classes. 
com.liferay.portal.template   
com.liferay.portlet.journal.util   
 

Uses of PortalCache in com.liferay.portal.cache
 

Fields in com.liferay.portal.cache with type parameters of type PortalCache
protected  ConcurrentMap<String,PortalCache<K,V>> AbstractPortalCacheManager.portalCaches
           
 

Methods in com.liferay.portal.cache that return PortalCache
protected abstract  PortalCache<K,V> AbstractPortalCacheManager.createPortalCache(String cacheName)
           
 PortalCache<? extends Serializable,? extends Serializable> MultiVMPoolImpl.getCache(String name)
           
 PortalCache<? extends Serializable,?> SingleVMPoolImpl.getCache(String name)
           
 PortalCache<K,V> AbstractPortalCacheManager.getCache(String name)
           
 PortalCache<? extends Serializable,? extends Serializable> MultiVMPoolImpl.getCache(String name, boolean blocking)
           
 PortalCache<? extends Serializable,?> SingleVMPoolImpl.getCache(String name, boolean blocking)
           
 PortalCache<K,V> AbstractPortalCacheManager.getCache(String name, boolean blocking)
           
 

Uses of PortalCache in com.liferay.portal.cache.cluster
 

Methods in com.liferay.portal.cache.cluster with parameters of type PortalCache
 void ClusterLinkCacheReplicator.notifyEntryEvicted(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void ClusterLinkCacheReplicator.notifyEntryExpired(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void ClusterLinkCacheReplicator.notifyEntryPut(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void ClusterLinkCacheReplicator.notifyEntryRemoved(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void ClusterLinkCacheReplicator.notifyEntryUpdated(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void ClusterLinkCacheReplicator.notifyRemoveAll(PortalCache<K,V> portalCache)
           
 

Uses of PortalCache in com.liferay.portal.cache.ehcache
 

Classes in com.liferay.portal.cache.ehcache that implement PortalCache
 class EhcachePortalCache<K extends Serializable,V>
           
 

Methods in com.liferay.portal.cache.ehcache that return PortalCache
protected  PortalCache<K,V> EhcachePortalCacheManager.createPortalCache(String cacheName)
           
 PortalCache<K,V> PortalCacheCacheEventListener.getPortalCache()
           
 

Methods in com.liferay.portal.cache.ehcache with parameters of type PortalCache
static net.sf.ehcache.Ehcache EhcacheUnwrapUtil.getEhcache(PortalCache<?,?> portalCache)
           
 void EhcacheCacheListenerAdapter.notifyEntryEvicted(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void EhcacheCacheListenerAdapter.notifyEntryExpired(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void EhcacheCacheListenerAdapter.notifyEntryPut(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void EhcacheCacheListenerAdapter.notifyEntryRemoved(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void EhcacheCacheListenerAdapter.notifyEntryUpdated(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void EhcacheCacheListenerAdapter.notifyRemoveAll(PortalCache<K,V> portalCache)
           
 

Constructors in com.liferay.portal.cache.ehcache with parameters of type PortalCache
PortalCacheCacheEventListener(CacheListener<K,V> cacheListener, PortalCache<K,V> portalCache)
           
 

Uses of PortalCache in com.liferay.portal.cache.memory
 

Classes in com.liferay.portal.cache.memory that implement PortalCache
 class MemoryPortalCache<K extends Serializable,V>
           
 

Methods in com.liferay.portal.cache.memory that return PortalCache
protected  PortalCache<K,V> MemoryPortalCacheManager.createPortalCache(String cacheName)
           
 

Uses of PortalCache in com.liferay.portal.cache.mvcc
 

Classes in com.liferay.portal.cache.mvcc that implement PortalCache
 class MVCCPortalCache<K extends Serializable,V extends MVCCModel>
           
 

Methods in com.liferay.portal.cache.mvcc that return PortalCache
static
<K extends Serializable>
PortalCache<K,?>
MVCCPortalCacheFactory.createMVCCEhcachePortalCache(PortalCache<K,?> portalCache)
           
 

Methods in com.liferay.portal.cache.mvcc with parameters of type PortalCache
static
<K extends Serializable>
PortalCache<K,?>
MVCCPortalCacheFactory.createMVCCEhcachePortalCache(PortalCache<K,?> portalCache)
           
 

Uses of PortalCache in com.liferay.portal.cache.transactional
 

Classes in com.liferay.portal.cache.transactional that implement PortalCache
 class TransactionalPortalCache<K extends Serializable,V>
           
 

Methods in com.liferay.portal.cache.transactional with parameters of type PortalCache
protected static
<K extends Serializable,V>
V
TransactionalPortalCacheHelper.get(PortalCache<K,V> portalCache, K key)
           
protected static
<K extends Serializable,V>
void
TransactionalPortalCacheHelper.put(PortalCache<K,V> portalCache, K key, V value, int ttl)
           
protected static
<K extends Serializable,V>
void
TransactionalPortalCacheHelper.removeAll(PortalCache<K,V> portalCache)
           
 

Constructors in com.liferay.portal.cache.transactional with parameters of type PortalCache
TransactionalPortalCache(PortalCache<K,V> portalCache)
           
 

Uses of PortalCache in com.liferay.portal.dao.orm.common
 

Methods in com.liferay.portal.dao.orm.common that return PortalCache
 PortalCache<Serializable,Serializable> EntityCacheImpl.getPortalCache(Class<?> clazz)
           
 

Uses of PortalCache in com.liferay.portal.kernel.cache
 

Subinterfaces of PortalCache in com.liferay.portal.kernel.cache
 interface LowLevelCache<K extends Serializable,V>
           
 

Classes in com.liferay.portal.kernel.cache that implement PortalCache
 class AbstractPortalCache<K extends Serializable,V>
           
 class BlockingPortalCache<K extends Serializable,V>
           
 class PortalCacheWrapper<K extends Serializable,V>
           
 

Fields in com.liferay.portal.kernel.cache declared as PortalCache
protected  PortalCache<K,V> PortalCacheWrapper.portalCache
           
 

Methods in com.liferay.portal.kernel.cache that return PortalCache
 PortalCache<K,V> PortalCacheManager.getCache(String name)
           
 PortalCache<? extends Serializable,? extends Serializable> MultiVMPool.getCache(String name)
           
 PortalCache<? extends Serializable,?> SingleVMPool.getCache(String name)
           
static
<K extends Serializable,V>
PortalCache<K,V>
SingleVMPoolUtil.getCache(String name)
           
static
<K extends Serializable,V extends Serializable>
PortalCache<K,V>
MultiVMPoolUtil.getCache(String name)
           
 PortalCache<K,V> PortalCacheManager.getCache(String name, boolean blocking)
           
 PortalCache<? extends Serializable,? extends Serializable> MultiVMPool.getCache(String name, boolean blocking)
           
 PortalCache<? extends Serializable,?> SingleVMPool.getCache(String name, boolean blocking)
           
static
<K extends Serializable,V>
PortalCache<K,V>
SingleVMPoolUtil.getCache(String name, boolean blocking)
           
static
<K extends Serializable,V extends Serializable>
PortalCache<K,V>
MultiVMPoolUtil.getCache(String name, boolean blocking)
           
 PortalCache<K,V> PortalCacheWrapper.getWrappedPortalCache()
           
 

Methods in com.liferay.portal.kernel.cache with parameters of type PortalCache
 void AggregatedCacheListener.notifyEntryEvicted(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void CacheListener.notifyEntryEvicted(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void AggregatedCacheListener.notifyEntryExpired(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void CacheListener.notifyEntryExpired(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void AggregatedCacheListener.notifyEntryPut(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void CacheListener.notifyEntryPut(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void AggregatedCacheListener.notifyEntryRemoved(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void CacheListener.notifyEntryRemoved(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void AggregatedCacheListener.notifyEntryUpdated(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void CacheListener.notifyEntryUpdated(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
 void AggregatedCacheListener.notifyRemoveAll(PortalCache<K,V> portalCache)
           
 void CacheListener.notifyRemoveAll(PortalCache<K,V> portalCache)
           
static
<K extends Serializable,V>
void
PortalCacheHelperUtil.putWithoutReplicator(PortalCache<K,V> portalCache, K key, V value)
           
static
<K extends Serializable,V>
void
PortalCacheHelperUtil.putWithoutReplicator(PortalCache<K,V> portalCache, K key, V value, int timeToLive)
           
static void PortalCacheHelperUtil.removeAllWithoutReplicator(PortalCache<?,?> portalCache)
           
static
<K extends Serializable>
void
PortalCacheHelperUtil.removeWithoutReplicator(PortalCache<K,?> portalCache, K key)
           
 void PortalCacheWrapper.setPortalCache(PortalCache<K,V> portalCache)
           
static
<K extends Serializable,V>
void
PortalCacheMapSynchronizeUtil.synchronize(PortalCache<K,V> portalCache, Map<? extends K,? extends V> map, PortalCacheMapSynchronizeUtil.Synchronizer<K,V> synchronizer)
           
 

Constructors in com.liferay.portal.kernel.cache with parameters of type PortalCache
BlockingPortalCache(PortalCache<K,V> portalCache)
           
PortalCacheWrapper(PortalCache<K,V> portalCache)
           
 

Uses of PortalCache in com.liferay.portal.kernel.dao.orm
 

Methods in com.liferay.portal.kernel.dao.orm that return PortalCache
 PortalCache<Serializable,Serializable> EntityCache.getPortalCache(Class<?> clazz)
           
static PortalCache<Serializable,Serializable> EntityCacheUtil.getPortalCache(Class<?> clazz)
           
 

Uses of PortalCache in com.liferay.portal.nio.intraband.cache
 

Methods in com.liferay.portal.nio.intraband.cache that return PortalCache
 PortalCache<K,V> BaseIntrabandPortalCacheManager.getCache(String name)
           
 PortalCache<K,V> BaseIntrabandPortalCacheManager.getCache(String name, boolean blocking)
           
 

Methods in com.liferay.portal.nio.intraband.cache that return types with arguments of type PortalCache
static Class<? extends PortalCache<?,?>> BaseIntrabandPortalCacheManager.getPortalCacheStubClass()
           
 

Uses of PortalCache in com.liferay.portal.service.persistence.impl
 

Fields in com.liferay.portal.service.persistence.impl declared as PortalCache
protected  PortalCache<Long,long[]> TableMapperImpl.leftToRightPortalCache
           
protected  PortalCache<Long,long[]> TableMapperImpl.rightToLeftPortalCache
           
 

Methods in com.liferay.portal.service.persistence.impl with parameters of type PortalCache
protected static
<M extends BaseModel<M>,S extends BaseModel<S>>
int
TableMapperImpl.deleteTableMappings(BasePersistence<M> masterBasePersistence, BasePersistence<S> slaveBasePersistence, PortalCache<Long,long[]> masterToSlavePortalCache, PortalCache<Long,long[]> slaveToMasterPortalCache, MappingSqlQuery<Long> mappingSqlQuery, SqlUpdate deleteSqlUpdate, long masterPrimaryKey)
           
protected static
<M extends BaseModel<M>,S extends BaseModel<S>>
int
TableMapperImpl.deleteTableMappings(BasePersistence<M> masterBasePersistence, BasePersistence<S> slaveBasePersistence, PortalCache<Long,long[]> masterToSlavePortalCache, PortalCache<Long,long[]> slaveToMasterPortalCache, MappingSqlQuery<Long> mappingSqlQuery, SqlUpdate deleteSqlUpdate, long masterPrimaryKey)
           
protected static
<T extends BaseModel<T>>
List<T>
TableMapperImpl.getBaseModels(PortalCache<Long,long[]> portalCache, MappingSqlQuery<Long> mappingSqlQuery, long masterPrimaryKey, BasePersistence<T> slaveBasePersistence, int start, int end, OrderByComparator<T> obc)
           
protected static long[] TableMapperImpl.getPrimaryKeys(PortalCache<Long,long[]> portalCache, MappingSqlQuery<Long> mappingSqlQuery, long masterPrimaryKey, boolean updateCache)
           
 

Uses of PortalCache in com.liferay.portal.template
 

Methods in com.liferay.portal.template with parameters of type PortalCache
 void TemplateResourceCacheListener.notifyEntryEvicted(PortalCache<String,TemplateResource> portalCache, String key, TemplateResource templateResource, int timeToLive)
           
 void TemplateResourceCacheListener.notifyEntryExpired(PortalCache<String,TemplateResource> portalCache, String key, TemplateResource templateResource, int timeToLive)
           
 void TemplateResourceCacheListener.notifyEntryPut(PortalCache<String,TemplateResource> portalCache, String key, TemplateResource templateResource, int timeToLive)
           
 void TemplateResourceCacheListener.notifyEntryRemoved(PortalCache<String,TemplateResource> portalCache, String key, TemplateResource templateResource, int timeToLive)
           
 void TemplateResourceCacheListener.notifyEntryUpdated(PortalCache<String,TemplateResource> portalCache, String key, TemplateResource templateResource, int timeToLive)
           
 void TemplateResourceCacheListener.notifyRemoveAll(PortalCache<String,TemplateResource> portalCache)
           
 

Uses of PortalCache in com.liferay.portlet.journal.util
 

Fields in com.liferay.portlet.journal.util declared as PortalCache
protected static PortalCache<String,JournalArticleDisplay> JournalContentImpl.portalCache
           
 


Liferay 7.0-ce-m3