Interface CacheIF<K,​V>

  • All Known Implementing Classes:
    ClusteredCache, DefaultCache

    public interface CacheIF<K,​V>
    INTERNAL: Simple interface used by innermost caches.
    • Method Detail

      • get

        V get​(K key)
      • put

        V put​(K key,
              V value)
      • remove

        V remove​(K key,
                 boolean notifyCluster)
      • removeAll

        void removeAll​(Collection<K> keys,
                       boolean notifyCluster)
      • clear

        void clear​(boolean notifyCluster)
      • size

        long size()