org.elasticsearch.common.util.concurrent
Interface ConcurrentMapLong<T>

All Superinterfaces:
ConcurrentMap<Long,T>, Map<Long,T>
All Known Implementing Classes:
ConcurrentHashMapLong

public interface ConcurrentMapLong<T>
extends ConcurrentMap<Long,T>


Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Method Summary
 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
putIfAbsent, remove, replace, replace
 
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)


Copyright © 2009-2012. All Rights Reserved.