Packages

object Atomic extends Serializable

Source
Atomic.scala
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Atomic
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class Macros extends HygieneUtilMacros with InlineMacros

    Macros implementations for the Atomic type

    Macros implementations for the Atomic type

    Annotations
    @bundle()

Value Members

  1. macro def apply[T, R <: Atomic[T]](initialValue: T)(implicit builder: AtomicBuilder[T, R]): R

    Constructs an Atomic[T] reference.

    Constructs an Atomic[T] reference.

    Based on the initialValue, it will return the best, most specific type. E.g. you give it a number, it will return something inheriting from AtomicNumber[T]. That's why it takes an AtomicBuilder[T, R] as an implicit parameter - but worry not about such details as it just works.

    initialValue

    is the initial value with which to initialize the Atomic reference

    builder

    is the builder that helps us to build the best reference possible, based on our initialValue

  2. def builderFor[T, R <: Atomic[T]](initialValue: T)(implicit builder: AtomicBuilder[T, R]): AtomicBuilder[T, R]

    Returns the builder that would be chosen to construct Atomic references for the given initialValue.

  3. macro def withPadding[T, R <: Atomic[T]](initialValue: T, padding: PaddingStrategy)(implicit builder: AtomicBuilder[T, R]): R

    Constructs an Atomic[T] reference, applying the provided PaddingStrategy in order to counter the "false sharing" problem.

    Constructs an Atomic[T] reference, applying the provided PaddingStrategy in order to counter the "false sharing" problem.

    Based on the initialValue, it will return the best, most specific type. E.g. you give it a number, it will return something inheriting from AtomicNumber[T]. That's why it takes an AtomicBuilder[T, R] as an implicit parameter - but worry not about such details as it just works.

    Note that for Scala.js we aren't applying any padding, as it doesn't make much sense, since Javascript execution is single threaded, but this builder is provided for syntax compatibility anyway across the JVM and Javascript and we never know how Javascript engines will evolve.

    initialValue

    is the initial value with which to initialize the Atomic reference

    padding

    is the PaddingStrategy to apply

    builder

    is the builder that helps us to build the best reference possible, based on our initialValue