Packages

abstract class Callback[-A] extends Listener[A] with (Try[A]) ⇒ Unit

Represents a callback that should be called asynchronously with the result of a computation. Used by Task to signal the completion of asynchronous computations on runAsync.

The onSuccess method should be called only once, with the successful result, whereas onError should be called if the result is an error.

Linear Supertypes
(Try[A]) ⇒ Unit, Listener[A], Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Callback
  2. Function1
  3. Listener
  4. Serializable
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Callback()

Abstract Value Members

  1. abstract def onError(ex: Throwable): Unit
  2. abstract def onSuccess(value: A): Unit

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def andThen[A](g: (Unit) ⇒ A): (Try[A]) ⇒ A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  5. final def apply(result: Either[Throwable, A]): Unit
  6. final def apply(result: Coeval[A]): Unit
  7. final def apply(result: Try[A]): Unit
    Definition Classes
    Callback → Function1
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def compose[A](g: (A) ⇒ Try[A]): (A) ⇒ Unit
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  11. final def contramap[B](f: (B) ⇒ A): Callback[B]

    Return a new callback that will apply the supplied function before passing the result into this callback.

  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  21. final def onValue(value: A): Unit

    An alias for onSuccess, inherited from monix.execution.Listener.

    An alias for onSuccess, inherited from monix.execution.Listener.

    Definition Classes
    Callback → Listener
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    Function1 → AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from (Try[A]) ⇒ Unit

Inherited from Listener[A]

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped