| 程序包 | 说明 |
|---|---|
| com.alicp.jetcache | |
| com.alicp.jetcache.event |
| 限定符和类型 | 类和说明 |
|---|---|
class |
CacheGetResult<V> |
class |
MultiGetResult<K,V>
Created on 2017/2/21.
|
| 限定符和类型 | 字段和说明 |
|---|---|
static CacheResult |
CacheResult.EXISTS_WITHOUT_MSG |
static CacheResult |
CacheResult.FAIL_ILLEGAL_ARGUMENT |
static CacheResult |
CacheResult.FAIL_WITHOUT_MSG |
static CacheResult |
CacheResult.PART_SUCCESS_WITHOUT_MSG |
static CacheResult |
CacheResult.SUCCESS_WITHOUT_MSG |
| 限定符和类型 | 方法和说明 |
|---|---|
CacheResult |
SimpleProxyCache.PUT_ALL(Map<? extends K,? extends V> map) |
CacheResult |
MultiLevelCache.PUT_ALL(Map<? extends K,? extends V> map) |
default CacheResult |
Cache.PUT_ALL(Map<? extends K,? extends V> map)
Copies all of the entries from the specified map to the cache.
|
CacheResult |
SimpleProxyCache.PUT_ALL(Map<? extends K,? extends V> map,
long expireAfterWrite,
TimeUnit timeUnit) |
CacheResult |
Cache.PUT_ALL(Map<? extends K,? extends V> map,
long expireAfterWrite,
TimeUnit timeUnit)
Copies all of the entries from the specified map to the cache.
|
CacheResult |
AbstractCache.PUT_ALL(Map<? extends K,? extends V> map,
long expireAfterWrite,
TimeUnit timeUnit) |
CacheResult |
SimpleProxyCache.PUT_IF_ABSENT(K key,
V value,
long expireAfterWrite,
TimeUnit timeUnit) |
CacheResult |
Cache.PUT_IF_ABSENT(K key,
V value,
long expireAfterWrite,
TimeUnit timeUnit)
If the specified key is not already associated with a value, associate it with the given value.
|
CacheResult |
AbstractCache.PUT_IF_ABSENT(K key,
V value,
long expireAfterWrite,
TimeUnit timeUnit) |
CacheResult |
SimpleProxyCache.PUT(K key,
V value) |
CacheResult |
MultiLevelCache.PUT(K key,
V value) |
default CacheResult |
Cache.PUT(K key,
V value)
Associates the specified value with the specified key in the cache.
|
CacheResult |
SimpleProxyCache.PUT(K key,
V value,
long expireAfterWrite,
TimeUnit timeUnit) |
CacheResult |
Cache.PUT(K key,
V value,
long expireAfterWrite,
TimeUnit timeUnit)
Associates the specified value with the specified key in the cache.
|
CacheResult |
AbstractCache.PUT(K key,
V value,
long expireAfterWrite,
TimeUnit timeUnit) |
CacheResult |
SimpleProxyCache.REMOVE_ALL(Set<? extends K> keys) |
CacheResult |
Cache.REMOVE_ALL(Set<? extends K> keys)
Removes entries for the specified keys.
|
CacheResult |
AbstractCache.REMOVE_ALL(Set<? extends K> keys) |
CacheResult |
SimpleProxyCache.REMOVE(K key) |
CacheResult |
Cache.REMOVE(K key)
Removes the mapping for a key from this cache if it is present.
|
CacheResult |
AbstractCache.REMOVE(K key) |
| 限定符和类型 | 方法和说明 |
|---|---|
CacheResult |
CacheRemoveEvent.getResult() |
CacheResult |
CacheRemoveAllEvent.getResult() |
CacheResult |
CachePutEvent.getResult() |
CacheResult |
CachePutAllEvent.getResult() |
| 构造器和说明 |
|---|
CachePutAllEvent(Cache cache,
long millis,
Map map,
CacheResult result) |
CachePutEvent(Cache cache,
long millis,
Object key,
Object value,
CacheResult result) |
CacheRemoveAllEvent(Cache cache,
long millis,
Set keys,
CacheResult result) |
CacheRemoveEvent(Cache cache,
long millis,
Object key,
CacheResult result) |
Copyright © 2013–2019. All rights reserved.