Packages

c

monix.eval.Callback

Extensions

implicit final class Extensions[-A] extends AnyVal

Useful extension methods for Callback.

Source
Callback.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Extensions
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Extensions(source: Callback[A])

Value Members

  1. def asyncApply(value: Try[A])(implicit s: Scheduler): Unit

    Extension method that calls apply asynchronously.

  2. def asyncApply(value: Coeval[A])(implicit s: Scheduler): Unit

    Extension method that calls apply asynchronously.

  3. def asyncOnError(ex: Throwable)(implicit s: Scheduler): Unit

    Extension method that calls onError asynchronously.

  4. def asyncOnSuccess(value: A)(implicit s: Scheduler): Unit

    Extension method that calls onSuccess asynchronously.

  5. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  6. val source: Callback[A]