monifu

concurrent

package concurrent

Visibility
  1. Public
  2. All

Type Members

  1. trait Cancelable extends AnyRef

    Represents an asynchronous computation whose execution can be canceled.

    Represents an asynchronous computation whose execution can be canceled. Used by monifu.concurrent.Scheduler giving you the ability to cancel scheduled units of work.

    It is equivalent to java.io.Closeable, but without the I/O focus, or to IDisposable in Microsoft .NET, or to akka.actor.Cancellable.

  2. trait Scheduler extends ExecutionContext

    A Scheduler is an scala.concurrent.ExecutionContext that additionally can schedule the execution of units of work to run with a delay or periodically.

    A Scheduler is an scala.concurrent.ExecutionContext that additionally can schedule the execution of units of work to run with a delay or periodically.

    Annotations
    @implicitNotFound( ... )

Value Members

  1. object Cancelable

  2. object Scheduler extends SchedulerCompanion with SchedulerCompanionImpl

  3. object ThreadLocal

  4. package async

  5. 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 good reasons, as Atomic references are still useful in non-multi-threaded environments).

    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. They also support weak operations, defined in WeakAtomic[T], such as (e.g. weakCompareAndSet, lazySet) or operations that block the current thread through spin-locking, until a condition happens (e.g. waitForCompareAndSet), methods exposed by BlockingAtomic[T].

    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

    In comparison with java.util.concurrent.AtomicReference, these references implement common interfaces that you can use generically (i.e. Atomic[T], AtomicNumber[T], BlockableAtomic[T], WeakAtomic[T]). And also provide useful helpers for atomically mutating of values (i.e. transform, transformAndGet, getAndTransform, etc...) or of numbers of any kind (incrementAndGet, getAndAdd, etc...).

    A high-level documentation describing the rationale for these can be found here: Atomic Reference

  6. object extensions

  7. package misc

  8. package schedulers

Ungrouped