Uses of Interface
com.atlassian.cache.Cache

Packages that use Cache
com.atlassian.cache   
com.atlassian.cache.hazelcast   
com.atlassian.cache.impl   
 

Uses of Cache in com.atlassian.cache
 

Methods in com.atlassian.cache that return Cache
<K,V> Cache<K,V>
CacheFactory.getCache(Class<?> owningClass, String name)
          Returns the cache with the given name, creates it if necessary.
<K,V> Cache<K,V>
CacheFactory.getCache(String name)
          Returns the cache with the given name, creates it if necessary.
<K,V> Cache<K,V>
CacheFactory.getCache(String name, CacheLoader<K,V> loader)
          Returns the cache with the given name and loader, creates it if necessary.
<K,V> Cache<K,V>
CacheFactory.getCache(String name, CacheLoader<K,V> loader, CacheSettings required)
          Returns the cache with the given name, loader and required cache settings, creates it if necessary.
<K,V> Cache<K,V>
CacheFactory.getCache(String name, Class<K> keyType, Class<V> valueType)
          Deprecated. since 2.0, use getCache(name) instead
protected  Cache<String,Long> AbstractCacheTest.makeExceptionalCache()
           
protected  Cache<String,Long> AbstractCacheTest.makeExpiringCache()
           
protected  Cache<String,Long> AbstractCacheTest.makeNullReturningCache()
           
protected  Cache<String,Long> AbstractCacheTest.makeSimpleCache()
           
protected  Cache<String,Long> AbstractCacheTest.makeSizeLimitedCache(int maxEntries)
           
protected  Cache<String,Long> AbstractCacheTest.makeSizeLimitedCache(int maxEntries, AtomicInteger loadCounter)
           
protected  Cache<String,Long> AbstractCacheTest.makeUnexpiringCache()
           
 

Methods in com.atlassian.cache that return types with arguments of type Cache
 Collection<Cache<?,?>> CacheManager.getCaches()
          Deprecated. Since 2.0. Use CacheManager.getManagedCaches() instead.
 

Methods in com.atlassian.cache with parameters of type Cache
protected static
<K,V> void
AbstractCacheTest.assertEmpty(Cache<K,V> cache)
           
protected static
<K,V> void
AbstractCacheTest.assertSize(Cache<K,V> cache, int expectedSize)
           
 

Uses of Cache in com.atlassian.cache.hazelcast
 

Classes in com.atlassian.cache.hazelcast that implement Cache
 class HazelcastCache<K,V>
          Hazelcast implementation of the Cache and ManagedCache interfaces
 class HazelcastHybridCache<K,V>
          Implementation of ManagedCache and Cache that can be used when the cached values do not implement Serializable but cache invalidation must work cluster-wide.
 

Methods in com.atlassian.cache.hazelcast that return Cache
protected
<K,V> Cache<K,V>
HazelcastCacheManager.createDistributedCache(String name, CacheLoader<K,V> loader, CacheSettings settings)
           
protected
<K,V> Cache<K,V>
HazelcastCacheManager.createHybridCache(String name, CacheLoader<K,V> loader, CacheSettings settings)
           
 

Uses of Cache in com.atlassian.cache.impl
 

Methods in com.atlassian.cache.impl that return Cache
<K,V> Cache<K,V>
AbstractCacheManager.getCache(Class<?> owningClass, String name)
           
<K,V> Cache<K,V>
AbstractCacheManager.getCache(String name)
           
<K,V> Cache<K,V>
AbstractCacheManager.getCache(String name, CacheLoader<K,V> loader)
           
<K,V> Cache<K,V>
AbstractCacheManager.getCache(String name, CacheLoader<K,V> loader, CacheSettings settings)
           
<K,V> Cache<K,V>
AbstractCacheManager.getCache(String name, Class<K> keyType, Class<V> valueType)
           
 

Methods in com.atlassian.cache.impl that return types with arguments of type Cache
 Collection<Cache<?,?>> AbstractCacheManager.getCaches()
           
 



Copyright © 2015 Atlassian. All rights reserved.