Uses of Class
com.atlassian.cache.CacheSettingsBuilder

Packages that use CacheSettingsBuilder
com.atlassian.cache   
 

Uses of CacheSettingsBuilder in com.atlassian.cache
 

Methods in com.atlassian.cache that return CacheSettingsBuilder
 CacheSettingsBuilder CacheSettingsBuilder.expireAfterAccess(long expireAfter, TimeUnit timeUnit)
          Set a hint for the cache regarding how long entries should be held in the cache.
 CacheSettingsBuilder CacheSettingsBuilder.expireAfterWrite(long expireAfter, TimeUnit timeUnit)
          Set a hint for the cache regarding how long entries should be held in the cache.
 CacheSettingsBuilder CacheSettingsBuilder.flushable()
          Indicates that this cache can be flushed by the cache manager when desired.
 CacheSettingsBuilder CacheSettingsBuilder.local()
          Indicates that this cache should be local to the node (JVM) where the cache is created.
 CacheSettingsBuilder CacheSettingsBuilder.maxEntries(int maxEntries)
          Indicates that this cache can have a maximum number of entries.
 CacheSettingsBuilder CacheSettingsBuilder.remote()
          Indicates that this cache should be clustered in a clustered deployment.
 CacheSettingsBuilder CacheSettingsBuilder.replicateAsynchronously()
          Indicates that in a clustered environment with replicated caches, this cache should replicate asynchronously.
 CacheSettingsBuilder CacheSettingsBuilder.replicateSynchronously()
          Indicates that in a clustered environment with replicated caches, this cache should replicate synchronously.
 CacheSettingsBuilder CacheSettingsBuilder.replicateViaCopy()
          Indicates that in a clustered environment with replicated caches, this cache should replicate put and update operations by copying the relevant key and value across the wire (requiring both of them to be Serializable).
 CacheSettingsBuilder CacheSettingsBuilder.replicateViaInvalidation()
          Indicates that in a clustered environment with replicated caches, this cache should replicate by sending only the key across the wire, for invalidation by the other nodes in the cluster; this requires only the key to be Serializable.
protected  CacheSettingsBuilder AbstractCachedReferenceListenerTest.settingsBuilder()
           
protected  CacheSettingsBuilder AbstractCacheListenerTest.settingsBuilder()
           
protected  CacheSettingsBuilder AbstractCacheTest.settingsBuilder()
           
protected  CacheSettingsBuilder AbstractLazyReferenceTest.settingsBuilder()
           
 CacheSettingsBuilder CacheSettingsBuilder.unflushable()
          Indicates that this cache cannot be flushed by the cache manager when desired.
 



Copyright © 2015 Atlassian. All rights reserved.