Interface TransactionAwareCacheFactory
-
- All Known Implementing Classes:
TransactionalCacheFactory
public interface TransactionAwareCacheFactory
- Since:
- 7.5
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static TransactionAwareCacheFactory
from(com.atlassian.cache.CacheFactory delegate)
Narrow aCacheFactory
down to theTransactionAwareCacheFactory
interface.<K,V>
TransactionAwareCache<K,V>getTxCache(String cacheName)
<K,V>
TransactionAwareCache<K,V>getTxCache(String cacheName, com.atlassian.cache.CacheLoader<K,V> loader)
-
-
-
Method Detail
-
getTxCache
<K,V> TransactionAwareCache<K,V> getTxCache(String cacheName)
-
getTxCache
<K,V> TransactionAwareCache<K,V> getTxCache(String cacheName, com.atlassian.cache.CacheLoader<K,V> loader)
-
from
static TransactionAwareCacheFactory from(com.atlassian.cache.CacheFactory delegate)
Narrow aCacheFactory
down to theTransactionAwareCacheFactory
interface.
-
-