java.lang.Object
org.apache.jena.atlas.lib.cache.Cache1<K,V>
- All Implemented Interfaces:
Cache<K,V>
A one-slot cache.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()booleancontainsKey(K key) Does the cache contain the key?Get from cache; if not present, call theFunctionto fill the cache slot.getIfPresent(K key) Get from cache - or return null.Get from cache; if not present, call theCallableto try to fill the cache.booleanisEmpty()keys()Iterate over all keys.voidInsert into the cachevoidRemove from cache - return true if key referenced an entrylongsize()Current size of cache
-
Constructor Details
-
Cache1
public Cache1() -
Cache1
-
-
Method Details
-
containsKey
Description copied from interface:CacheDoes the cache contain the key?- Specified by:
containsKeyin interfaceCache<K,V>
-
getIfPresent
Description copied from interface:CacheGet from cache - or return null.- Specified by:
getIfPresentin interfaceCache<K,V>
-
getOrFill
Description copied from interface:CacheGet from cache; if not present, call theCallableto try to fill the cache. This operation should be atomic. -
get
Description copied from interface:CacheGet from cache; if not present, call theFunctionto fill the cache slot. This operation should be atomic. -
clear
public void clear() -
isEmpty
public boolean isEmpty() -
keys
Description copied from interface:CacheIterate over all keys. Iterating over the keys requires the caller be thread-safe. -
put
Description copied from interface:CacheInsert into the cache -
remove
Description copied from interface:CacheRemove from cache - return true if key referenced an entry -
size
public long size()Description copied from interface:CacheCurrent size of cache
-