Scalax
|
|
scalax/control/ConcurrentHashMap.scala
]
class
ConcurrentHashMap[K, V](val
jmap : java.util.concurrent.ConcurrentHashMap[K, V])
extends
scala.collection.jcl.MapWrapper[K, V]Additional Constructor Summary | |
def
|
this : ConcurrentHashMap[K, V] |
Method Summary | |
def
|
putIfAbsent (k : K, v : V) : scala.Option[V] |
def
|
remove (k : K, v : V) : Boolean |
def
|
replace (k : K, o : V, n : V) : Boolean |
def
|
replace (k : K, v : V) : V |
def
|
underlying : java.util.concurrent.ConcurrentHashMap[K, V] |
Methods inherited from scala.PartialFunction | |
scala.PartialFunction.orElse, scala.PartialFunction.andThen |
Methods inherited from scala.Function1 | |
scala.Function1.compose |
Methods inherited from scala.Collection | |
scala.Collection.toArray |
Methods inherited from AnyRef | |
getClass, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Additional Constructor Details |
Method Details |
def
underlying : java.util.concurrent.ConcurrentHashMap[K, V]
def
putIfAbsent(k : K, v : V) : scala.Option[V]
Scalax
|
|