Interface FSCacheEx<K,​V>

All Known Implementing Classes:
FSDefaultCacheStore, FSNoOpCacheStore

public interface FSCacheEx<K,​V>
  • Method Summary

    Modifier and Type Method Description
    V get​(K key)  
    V get​(K key, Callable<? extends V> loader)  
    void put​(K key, V value)  
  • Method Details

    • put

      void put​(K key, V value)
    • get

      V get​(K key, Callable<? extends V> loader)
    • get

      V get​(K key)