-
public interface CountingMemoryCache.EntryStateObserver<K>Interface used to observe the state changes of an entry.
-
-
Method Summary
Modifier and Type Method Description abstract voidonExclusivityChanged(K key, boolean isExclusive)Called when the exclusivity status of the entry changes. -
-
Method Detail
-
onExclusivityChanged
abstract void onExclusivityChanged(K key, boolean isExclusive)
Called when the exclusivity status of the entry changes.
The item can be reused if it is exclusively owned by the cache.
-
-
-
-