monix

eval

package eval

Visibility
  1. Public
  2. All

Type Members

  1. trait Callback[-T] extends (Try[T]) ⇒ Unit with Serializable

    Represents a callback that should be called asynchronously with the result of a computation.

  2. sealed abstract class Coeval[+A] extends () ⇒ A with Serializable

    Coeval represents lazy computations that can execute synchronously.

  3. sealed abstract class Task[+A] extends Serializable

    Task represents a specification for a possibly lazy or asynchronous computation, which when executed will produce an A as a result, along with possible side-effects.

  4. trait TaskApp extends JSApp

    Safe App type that runs a Task action.

  5. final class TaskSemaphore extends Serializable

    The TaskSemaphore is an asynchronous semaphore implementation that limits the parallelism on task execution.

Value Members

  1. object Callback extends Serializable

  2. object Coeval extends Serializable

  3. object Task extends TaskInstances with Serializable

  4. object TaskSemaphore extends Serializable

Ungrouped