Interface SingleCache.ICacheUpdater<K,V>

Type Parameters:
K - The key type.
V - The value type.
Enclosing class:
SingleCache<K,V>

public static interface SingleCache.ICacheUpdater<K,V>
This is responsible for fetching new updates when the cache desires this.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    boolean
    isKeyEqual(K cacheKey, K newKey)
     
  • Method Details

    • getNewValue

      V getNewValue(K key)
    • isKeyEqual

      boolean isKeyEqual(K cacheKey, K newKey)