J.Concurrent

object Concurrent

A set of concurrent utility implementations which do not use synchronization, but rather more finely grained java.util.concurrent.atomic technology.

Source
__.scala
class java.lang.Object
trait scala.Matchable
class Any

Member

opaque type Counter

Thread safe, minimal overhead counter based on java.util.concurrent.atomic.AtomicLong.

Source
Counter.scala
class Deque[A] extends Collection[A]

Thread safe linked list Deque implementation.

Source
Deque.scala
opaque type Ref[A]

Thread safe, minimal overhead reference based on java.util.concurrent.atomic.AtomicReference

Source
Ref.scala