Scalax
|
|
scalax/control/AtomicCell.scala
]
final
class
AtomicCell[A](init : A)
extends
AnyRefMethod Summary | |
def
|
compareAndSet (expect : A, update : A) : Boolean |
def
|
get : A |
def
|
getAndSet (n : A) : A |
def
|
set (n : A) : Unit |
override def
|
toString
: java.lang.String
Returns a string representation of the object.
|
def
|
weakCompareAndSet (expect : A, update : A) : Boolean |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
def
get : A
override
def
toString : java.lang.String
The default representation is platform dependent.
Scalax
|
|