Packages

  • package root
    Definition Classes
    root
  • package monix
    Definition Classes
    root
  • package execution
    Definition Classes
    monix
  • package atomic

    A small toolkit of classes that support compare-and-swap semantics for safe mutation of variables.

    A small toolkit of classes that support compare-and-swap semantics for safe mutation of variables.

    On top of the JVM, this means dealing with lock-free thread-safe programming. Also works on top of Javascript, with Scala.js, for API compatibility purposes and because it's a useful way to box a value.

    The backbone of Atomic references is this method:

    def compareAndSet(expect: T, update: T): Boolean

    This method atomically sets a variable to the update value if it currently holds the expect value, reporting true on success or false on failure. The classes in this package also contain methods to get and unconditionally set values.

    Building a reference is easy with the provided constructor, which will automatically return the most specific type needed (in the following sample, that's an AtomicDouble, inheriting from AtomicNumber[T]):

    val atomicNumber = Atomic(12.2)
    
    atomicNumber.incrementAndGet()
    // => 13.2

    These also provide useful helpers for atomically mutating of values (i.e. transform, transformAndGet, getAndTransform, etc...) or of numbers of any kind (incrementAndGet, getAndAdd, etc...).

    Definition Classes
    execution
  • package boxes
    Definition Classes
    atomic
  • Atomic
  • AtomicAny
  • AtomicBoolean
  • AtomicBuilder
  • AtomicByte
  • AtomicChar
  • AtomicDouble
  • AtomicFloat
  • AtomicInt
  • AtomicLong
  • AtomicNumber
  • AtomicNumberAny
  • AtomicShort
  • PaddingStrategy

object AtomicBuilder extends Level2 with Serializable

Linear Supertypes
Serializable, Serializable, Level2, Level1, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AtomicBuilder
  2. Serializable
  3. Serializable
  4. Level2
  5. Level1
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. implicit def AtomicNumberBuilder[T <: AnyRef](implicit arg0: Numeric[T]): AtomicBuilder[T, AtomicNumberAny[T]]
    Definition Classes
    Level2
  5. implicit def AtomicRefBuilder[T <: AnyRef]: AtomicBuilder[T, AtomicAny[T]]
    Definition Classes
    Level1
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. implicit object AtomicBooleanBuilder extends AtomicBuilder[Boolean, AtomicBoolean]
  23. implicit object AtomicByteBuilder extends AtomicBuilder[Byte, AtomicByte]
  24. implicit object AtomicCharBuilder extends AtomicBuilder[Char, AtomicChar]
  25. implicit object AtomicDoubleBuilder extends AtomicBuilder[Double, AtomicDouble]
  26. implicit object AtomicFloatBuilder extends AtomicBuilder[Float, AtomicFloat]
  27. implicit object AtomicIntBuilder extends AtomicBuilder[Int, AtomicInt]
  28. implicit object AtomicLongBuilder extends AtomicBuilder[Long, AtomicLong]
  29. implicit object AtomicShortBuilder extends AtomicBuilder[Short, AtomicShort]

Inherited from Serializable

Inherited from Serializable

Inherited from Level2

Inherited from Level1

Inherited from AnyRef

Inherited from Any

Ungrouped