AtomicLong

kyo.concurrent.atomics$.AtomicLong
final class AtomicLong extends AnyVal

Attributes

Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Value members

Concrete methods

def addAndGet(v: Long): Long > IOs
def cas(curr: Long, next: Long): Boolean > IOs
def decrementAndGet: Long > IOs
def get: Long > IOs
def getAndAdd(v: Long): Long > IOs
def getAndDecrement: Long > IOs
def getAndIncrement: Long > IOs
def getAndSet(v: Long): Long > IOs
def incrementAndGet: Long > IOs
def lazySet(v: Long): Unit > IOs
def set(v: Long): Unit > IOs
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any