Packages

  • package root
    Definition Classes
    root
  • package monix
    Definition Classes
    root
  • package execution
    Definition Classes
    monix
  • package annotations
    Definition Classes
    execution
  • 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[A]):

    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 cancelables

    Cancelables represent asynchronous units of work or other things scheduled for execution and whose execution can be canceled.

    Cancelables represent asynchronous units of work or other things scheduled for execution and whose execution can be canceled.

    One use-case is the scheduling done by monix.execution.Scheduler, in which the scheduling methods return a Cancelable, allowing the canceling of the scheduling.

    Example:

    val s = ConcurrentScheduler()
    val task = s.scheduleRepeated(10.seconds, 50.seconds, {
      doSomething()
    })
    
    // later, cancels the scheduling ...
    task.cancel()
    Definition Classes
    execution
  • package exceptions
    Definition Classes
    execution
  • package internal
    Definition Classes
    execution
  • package misc
    Definition Classes
    execution
  • HygieneUtilMacros
  • InlineMacros
  • Local
  • ThreadLocal
  • package rstreams

    Package exposing utilities for working with the Reactive Streams specification.

    Package exposing utilities for working with the Reactive Streams specification.

    Definition Classes
    execution
  • package schedulers
    Definition Classes
    execution

package misc

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. misc
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait HygieneUtilMacros extends AnyRef

    Utilities for macro-hygiene.

  2. trait InlineMacros extends AnyRef
  3. final class Local[A] extends AnyRef

    A Local is a ThreadLocal whose scope is flexible.

    A Local is a ThreadLocal whose scope is flexible. The state of all Locals may be saved or restored onto the current thread by the user. This is useful for threading Locals through execution contexts.

    Because it's not meaningful to inherit control from two places, Locals don't have to worry about having to merge two contexts.

    Note: the implementation is optimized for situations in which save and restore optimizations are dominant.

  4. final class ThreadLocal[A] extends AnyRef

    Cross-platform equivalent for java.lang.ThreadLocal, for specifying thread-local variables.

    Cross-platform equivalent for java.lang.ThreadLocal, for specifying thread-local variables.

    These variables differ from their normal counterparts in that each thread that accesses one (via its ThreadLocal#get or ThreadLocal#set method) has its own, independently initialized copy of the variable.

  5. type AsyncQueue[A] = execution.AsyncQueue[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0) Switch to monix.execution.AsyncQueue

  6. type AsyncSemaphore = execution.AsyncSemaphore
    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0) Switch to monix.execution.AsyncSemaphore

  7. type AsyncVar[A] = execution.AsyncVar[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0) Switch to monix.execution.AsyncVar

Value Members

  1. object Local
  2. object ThreadLocal

Deprecated Value Members

  1. def AsyncQueue: execution.AsyncQueue.type
    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0) Switch to monix.execution.AsyncQueue

  2. def AsyncSemaphore: execution.AsyncSemaphore.type
    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0) Switch to monix.execution.AsyncSemaphore

  3. def AsyncVar: execution.AsyncVar.type
    Annotations
    @deprecated
    Deprecated

    (Since version 3.0.0) Switch to monix.execution.AsyncVar

Inherited from AnyRef

Inherited from Any

Ungrouped