sealed abstract class Cause[+E] extends Product with Serializable
- Self Type
- Cause[E]
- Alphabetic
- By Inheritance
- Cause
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def &&[E1 >: E](that: Cause[E1]): Cause[E1]
Returns a cause that fails for this cause and the specified cause, in parallel.
- final def ++[E1 >: E](that: Cause[E1]): Cause[E1]
Returns a cause that fails for this cause and the specified cause, in sequence.
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def as[E1](e: => E1): Cause[E1]
Maps the error value of this cause to the specified constant value.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def contains[E1 >: E](that: Cause[E1]): Boolean
Determines if this cause contains or is equal to the specified cause.
- final def defects: List[Throwable]
Extracts a list of non-recoverable errors from the
Cause. - final def dieOption: Option[Throwable]
Returns the
Throwableassociated with the firstDiein thisCauseif one exists. - final def died: Boolean
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def failed: Boolean
- def failureOption: Option[E]
Returns the
Eassociated with the firstFailin thisCauseif one exists. - final def failureOrCause: Either[E, Cause[Nothing]]
Retrieve the first checked error on the
Leftif available, if there are no checked errors return the rest of theCausethat is known to contain onlyDieorInterruptcauses. - def failureTraceOption: Option[(E, Option[ZTrace])]
Returns the
Eassociated with the firstFailin thisCauseif one exists, along with its (optional) trace. - final def failureTraceOrCause: Either[(E, Option[ZTrace]), Cause[Nothing]]
Retrieve the first checked error and its trace on the
Leftif available, if there are no checked errors return the rest of theCausethat is known to contain onlyDieorInterruptcauses. - final def failures: List[E]
Produces a list of all recoverable errors
Ein theCause. - def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def find[Z](f: PartialFunction[Cause[E], Z]): Option[Z]
- final def flatMap[E1](f: (E) => Cause[E1]): Cause[E1]
- final def flatten[E1](implicit ev: <:<[E, Cause[E1]]): Cause[E1]
- final def fold[Z](empty: => Z, failCase: (E) => Z, dieCase: (Throwable) => Z, interruptCase: (Id) => Z)(thenCase: (Z, Z) => Z, bothCase: (Z, Z) => Z, tracedCase: (Z, ZTrace) => Z): Z
- final def foldLeft[Z](z: Z)(f: PartialFunction[(Z, Cause[E]), Z]): Z
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def interrupted: Boolean
Determines if the
Causecontains an interruption. - final def interruptedOnly: Boolean
Determines if the
Causecontains only interruptions and not anyDieorFailcauses. - final def interruptors: Set[Id]
Returns a set of interruptors, fibers that interrupted the fiber described by this
Cause. - final def isEmpty: Boolean
Determines if the
Causeis empty. - final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def keepDefects: Option[Cause[Nothing]]
Remove all
FailandInterruptnodes from thisCause, return onlyDiecause/finalizer defects. - final def map[E1](f: (E) => E1): Cause[E1]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def prettyPrint: String
Returns a
Stringwith the cause pretty-printed. - def productElementName(n: Int): String
- Definition Classes
- Product
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def productIterator: Iterator[Any]
- Definition Classes
- Product
- def productPrefix: String
- Definition Classes
- Product
- final def squash(implicit ev: <:<[E, Throwable]): Throwable
Squashes a
Causedown to a singleThrowable, chosen to be the "most important"Throwable. - final def squashTrace(implicit ev: <:<[E, Throwable]): Throwable
Squashes a
Causedown to a singleThrowable, chosen to be the "most important"Throwable.Squashes a
Causedown to a singleThrowable, chosen to be the "most important"Throwable. In addition, appends a new element to the suppressed exceptions of theThrowable, with thisCause"pretty printed" (in stackless mode) as the message. - final def squashTraceWith(f: (E) => Throwable): Throwable
Squashes a
Causedown to a singleThrowable, chosen to be the "most important"Throwable.Squashes a
Causedown to a singleThrowable, chosen to be the "most important"Throwable. In addition, appends a new element the toThrowables "caused by" chain, with thisCause"pretty printed" (in stackless mode) as the message. - final def squashWith(f: (E) => Throwable): Throwable
Squashes a
Causedown to a singleThrowable, chosen to be the "most important"Throwable. - final def stripFailures: Cause[Nothing]
Discards all typed failures kept on this
Cause. - final def stripSomeDefects(pf: PartialFunction[Throwable, Any]): Option[Cause[E]]
Remove all
Diecauses that the specified partial function is defined at, returningSomewith the remaining causes orNoneif there are no remaining causes. - final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def traces: List[ZTrace]
Grabs a list of execution traces from the cause.
- final def untraced: Cause[E]
Returns a
Causethat has been stripped of all tracing information. - final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()