Packages

  • package root

    This is the API documentation for the Monix library.

    Package Overview

    monix.execution exposes lower level primitives for dealing with asynchronous execution:

    monix.eval is for dealing with evaluation of results, thus exposing Task and Coeval.

    monix.reactive exposes the Observable pattern:

    monix.types implements type-class shims, to be translated to type-classes provided by libraries such as Cats or Scalaz.

    monix.cats is the optional integration with the Cats library, providing translations for the types described in monix.types.

    monix.scalaz is the optional integration with the Scalaz library, providing translations for the types described in monix.types.

    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
  • object Atomic extends Serializable
    Definition Classes
    atomic
  • Macros

class Macros extends HygieneUtilMacros with InlineMacros

Macros implementations for the Atomic type

Annotations
@bundle()
Source
Atomic.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Macros
  2. InlineMacros
  3. HygieneUtilMacros
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Macros(c: Context)

Value Members

  1. def addMacro[T](value: scala.reflect.macros.whitebox.Context.Expr[T])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[Unit]
  2. def applyMacro[T]()(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[T]
  3. def buildAnyMacro[T, R <: Atomic[T]](initialValue: scala.reflect.macros.whitebox.Context.Expr[T])(builder: scala.reflect.macros.whitebox.Context.Expr[AtomicBuilder[T, R]])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T], arg1: scala.reflect.macros.whitebox.Context.WeakTypeTag[R]): scala.reflect.macros.whitebox.Context.Expr[R]
  4. def buildAnyWithPaddingMacro[T, R <: Atomic[T]](initialValue: scala.reflect.macros.whitebox.Context.Expr[T], padding: scala.reflect.macros.whitebox.Context.Expr[PaddingStrategy])(builder: scala.reflect.macros.whitebox.Context.Expr[AtomicBuilder[T, R]])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T], arg1: scala.reflect.macros.whitebox.Context.WeakTypeTag[R]): scala.reflect.macros.whitebox.Context.Expr[R]
  5. val c: Context
    Definition Classes
    MacrosInlineMacrosHygieneUtilMacros
  6. def getAndTransformMacro[T](cb: scala.reflect.macros.whitebox.Context.Expr[(T) ⇒ T])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[T]
  7. def inlineAndReset[T](tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.whitebox.Context.Expr[T]
    Definition Classes
    InlineMacros
  8. def inlineAndResetTree(tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
    Definition Classes
    InlineMacros
  9. def inlineApplyRecursive(tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
    Definition Classes
    InlineMacros
  10. def resetTree(tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree
    Definition Classes
    InlineMacros
  11. def setMacro[T](value: scala.reflect.macros.whitebox.Context.Expr[T])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[Unit]
  12. def stripUnApplyNodes(): scala.reflect.macros.Universe.Transformer

    Creates a macro transformer than gets rid of implicit unapply in case statements.

    Creates a macro transformer than gets rid of implicit unapply in case statements.

    Workaround for: https://issues.scala-lang.org/browse/SI-5465

    Definition Classes
    InlineMacros
  13. def subtractMacro[T](value: scala.reflect.macros.whitebox.Context.Expr[T])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[Unit]
  14. def transformAndExtractMacro[S, A](cb: scala.reflect.macros.whitebox.Context.Expr[(S) ⇒ (A, S)])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[S], arg1: scala.reflect.macros.whitebox.Context.WeakTypeTag[A]): scala.reflect.macros.whitebox.Context.Expr[A]
  15. def transformAndGetMacro[T](cb: scala.reflect.macros.whitebox.Context.Expr[(T) ⇒ T])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[T]
  16. def transformMacro[T](cb: scala.reflect.macros.whitebox.Context.Expr[(T) ⇒ T])(implicit arg0: scala.reflect.macros.whitebox.Context.WeakTypeTag[T]): scala.reflect.macros.whitebox.Context.Expr[Unit]
  17. object util
    Definition Classes
    HygieneUtilMacros