Interface Cache.CycleHandler<K>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleCycle(K key)
Handle cycle that was detected while computing a cache value for given key.
-
-
-
Method Detail
-
handleCycle
void handleCycle(K key)
Handle cycle that was detected while computing a cache value for given key. This method would typically just throw a runtime exception.- Parameters:
key
- instance that caused the cycle.
-
-