Packages

object Cause extends Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Cause
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Both[+E](left: Cause[E], right: Cause[E]) extends Cause[E] with Product with Serializable
  2. sealed case class Die(value: Throwable, trace: StackTrace) extends Cause[Nothing] with Product with Serializable
  3. sealed case class Fail[+E](value: E, trace: StackTrace) extends Cause[E] with Product with Serializable
  4. trait Folder[-Context, -E, Z] extends AnyRef
  5. sealed case class Interrupt(fiberId: FiberId, trace: StackTrace) extends Cause[Nothing] with Product with Serializable
  6. final case class Stackless[+E](cause: Cause[E], stackless: Boolean) extends Cause[E] with Product with Serializable
  7. final case class Then[+E](left: Cause[E], right: Cause[E]) extends Cause[E] with Product with Serializable
  8. final case class Unified(fiberId: FiberId, className: String, message: String, trace: Chunk[StackTraceElement]) extends Product with Serializable

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  6. def die(defect: Throwable, trace: StackTrace = StackTrace.none): Cause[Nothing]
  7. val empty: Cause[Nothing]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def fail[E](error: E, trace: StackTrace = StackTrace.none): Cause[E]
  11. def flipCauseOption[E](cause: Cause[Option[E]]): Option[Cause[E]]

    Converts the specified Cause[Option[E]] to an Option[Cause[E]] by recursively stripping out any failures with the error None.

  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  14. def interrupt(fiberId: FiberId, trace: StackTrace = StackTrace.none): Cause[Nothing]
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  19. def stack[E](cause: Cause[E]): Cause[E]
  20. def stackless[E](cause: Cause[E]): Cause[E]
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. object Die extends AbstractFunction2[Throwable, StackTrace, Die] with Serializable
  27. case object Empty extends Cause[Nothing] with Product with Serializable
  28. object Fail extends Serializable
  29. object Folder
  30. object Interrupt extends AbstractFunction2[FiberId, StackTrace, Interrupt] with Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped