Interface ICacheStorage<K,V>

All Known Implementing Classes:
MapCacheStorage

public interface ICacheStorage<K,V>
  • Method Details

    • get

      V get(K key)
    • put

      void put(K key, V value)
    • remove

      void remove(K key)
    • clear

      void clear()
    • containsKey

      boolean containsKey(K key)
    • values

      Collection<V> values()