Interface ConcurrentMapLong<T>

  • All Superinterfaces:
    java.util.concurrent.ConcurrentMap<java.lang.Long,​T>, java.util.Map<java.lang.Long,​T>
    All Known Implementing Classes:
    ConcurrentHashMapLong

    public interface ConcurrentMapLong<T>
    extends java.util.concurrent.ConcurrentMap<java.lang.Long,​T>
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface java.util.Map

        java.util.Map.Entry<K extends java.lang.Object,​V extends java.lang.Object>
    • Method Summary

      Modifier and Type Method Description
      T get​(long key)  
      T put​(long key, T value)  
      T putIfAbsent​(long key, T value)  
      T remove​(long key)  
      • Methods inherited from interface java.util.concurrent.ConcurrentMap

        compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
      • Methods inherited from interface java.util.Map

        clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, values
    • Method Detail

      • get

        T get​(long key)
      • remove

        T remove​(long key)
      • put

        T put​(long key,
              T value)
      • putIfAbsent

        T putIfAbsent​(long key,
                      T value)