| Package | Description |
|---|---|
| oracle.wsm.common.sdk |
| Modifier and Type | Method and Description |
|---|---|
LRUCache.Builder<K,V> |
LRUCache.Builder.concurrencyLevel(int concurrencyLevel)
Specifies the estimated number of concurrently updating threads.
|
LRUCache.Builder<K,V> |
LRUCache.Builder.initialCapacity(int initialCapacity)
Specifies the initial capacity of the hash table (default 16).
|
<K1 extends K,V1 extends V> |
LRUCache.Builder.listener(EvictionListener<? super K1,? super V1> listener)
Specifies an optional listener that is registered for notification when
an entry is evicted.
|
LRUCache.Builder<K,V> |
LRUCache.Builder.maximumSize(long capacity)
Specifies the maximum weighted capacity to coerce the map to and may
exceed it temporarily.
|
static LRUCache.Builder<java.lang.Object,java.lang.Object> |
LRUCache.Builder.newBuilder() |
LRUCache.Builder<K,V> |
LRUCache.Builder.weigher(EntryWeigher<? super K,? super V> weigher)
Specifies an algorithm to determine how many the units of capacity an
entry consumes.
|
LRUCache.Builder<K,V> |
LRUCache.Builder.weigher(Weigher<V> weigher)
Specifies an algorithm to determine how many the units of capacity a
value consumes.
|