MCPcopy
hub / github.com/google/guava / reclaimValue

Method reclaimValue

guava/src/com/google/common/cache/LocalCache.java:1733–1737  ·  guava/src/com/google/common/cache/LocalCache.java::LocalCache.reclaimValue
(ValueReference<K, V> valueReference)

Source from the content-addressed store, hash-verified

1731 }
1732
1733 void reclaimValue(ValueReference<K, V> valueReference) {
1734 ReferenceEntry<K, V> entry = valueReference.getEntry();
1735 int hash = entry.getHash();
1736 segmentFor(hash).reclaimValue(entry.getKey(), hash, valueReference);
1737 }
1738
1739 void reclaimKey(ReferenceEntry<K, V> entry) {
1740 int hash = entry.getHash();

Callers 3

testReclaimValueMethod · 0.45

Calls 4

segmentForMethod · 0.95
getEntryMethod · 0.65
getHashMethod · 0.65
getKeyMethod · 0.65

Tested by 2

testReclaimValueMethod · 0.36