-
Methods in one.microstream.cache that return Cache
Modifier and Type |
Method |
Description |
<K,
V,
C extends javax.cache.configuration.Configuration<K,
V>> Cache<K,V> |
CacheManager.createCache(String cacheName,
C configuration) |
|
<K,
V,
C extends javax.cache.configuration.Configuration<K,
V>> Cache<K,V> |
CacheManager.Default.createCache(String cacheName,
C configuration) |
|
<K,
V> Cache<K,V> |
CacheManager.Default.getCache(String cacheName) |
|
<K,
V> Cache<K,V> |
CacheManager.Default.getCache(String cacheName,
Class<K> keyType,
Class<V> valueType) |
|
<K,
V> Cache<K,V> |
CacheManager.getCache(String cacheName) |
|
<K,
V> Cache<K,V> |
CacheManager.getCache(String cacheName,
Class<K> keyType,
Class<V> valueType) |
|
static <K,
V> Cache<K,V> |
Cache.New(String name,
CacheManager manager,
CacheConfiguration<K,V> configuration) |
|
Methods in one.microstream.cache with parameters of type Cache
Modifier and Type |
Method |
Description |
void |
EvictionManager.install(Cache<K,V> cache,
CacheTable cacheTable) |
|
void |
EvictionManager.Interval.install(Cache<K,V> cache,
CacheTable cacheTable) |
|
void |
EvictionManager.OnEntryCreation.install(Cache<K,V> cache,
CacheTable cacheTable) |
|
void |
EvictionManager.Interval.uninstall(Cache<K,V> cache,
CacheTable cacheTable) |
|
void |
EvictionManager.OnEntryCreation.uninstall(Cache<K,V> cache,
CacheTable cacheTable) |
|
void |
EvictionManager.uninstall(Cache<K,V> cache,
CacheTable cacheTable) |
|
-