Class CounterMap<K>


  • public class CounterMap<K>
    extends Object
    This is data structure used to store mapping from keys to counters. When counter becomes zero or non-zero, callback is called.
    • Method Detail

      • increment

        public void increment​(K key)
      • decrement

        public void decrement​(K key)
      • get

        public int get​(K key)
      • zeroizeKey

        public void zeroizeKey​(K key)
      • removeKey

        public void removeKey​(K key)
      • isZero

        public boolean isZero​(K key)
      • clear

        public void clear()