final case class Failure[E](cause: Cause[E]) extends Exit[E, Nothing] with Product with Serializable
- Alphabetic
- By Inheritance
- Failure
- Exit
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- final def bimap[E1, A1](f: (E) ⇒ E1, g: (Nothing) ⇒ A1): Exit[E1, A1]
Maps over both the error and value type.
Maps over both the error and value type.
- Definition Classes
- Exit
- val cause: Cause[E]
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws(classOf[java.lang.CloneNotSupportedException])
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def flatMap[E1 >: E, A1](f: (Nothing) ⇒ Exit[E1, A1]): Exit[E1, A1]
Flat maps over the value ty pe.
Flat maps over the value ty pe.
- Definition Classes
- Exit
- final def fold[Z](failed: (Cause[E]) ⇒ Z, completed: (Nothing) ⇒ Z): Z
Folds over the value or cause.
Folds over the value or cause.
- Definition Classes
- Exit
- final def foldM[E1, B](failed: (Cause[E]) ⇒ IO[E1, B], completed: (Nothing) ⇒ IO[E1, B]): IO[E1, B]
Effectfully folds over the value or cause.
Effectfully folds over the value or cause.
- Definition Classes
- Exit
- final def getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def getOrElse[A1 >: Nothing](orElse: (Cause[E]) ⇒ A1): A1
Retrieves the
Aif succeeded, or else returns the specified defaultA.Retrieves the
Aif succeeded, or else returns the specified defaultA.- Definition Classes
- Exit
- final def interrupted: Boolean
Determines if the result is interrupted.
Determines if the result is interrupted.
- Definition Classes
- Exit
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def map[A1](f: (Nothing) ⇒ A1): Exit[E, A1]
Maps over the value type.
Maps over the value type.
- Definition Classes
- Exit
- final def mapError[E1](f: (E) ⇒ E1): Exit[E1, Nothing]
Maps over the error type.
Maps over the error type.
- Definition Classes
- Exit
- 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()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def succeeded: Boolean
Determines if the result is a success.
Determines if the result is a success.
- Definition Classes
- Exit
- final def synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- final def toEither: Either[Throwable, Nothing]
Converts the
Exitto anEither[Throwable, A], by wrapping the cause inFiberFailure(if the result is failed).Converts the
Exitto anEither[Throwable, A], by wrapping the cause inFiberFailure(if the result is failed).- Definition Classes
- Exit
- 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
- @native() @throws(classOf[java.lang.InterruptedException])
- final def zip[E1 >: E, B](that: Exit[E1, B]): Exit[E1, (Nothing, B)]
Zips this result together with the specified result.
Zips this result together with the specified result.
- Definition Classes
- Exit
- final def zipPar[E1 >: E, B](that: Exit[E1, B]): Exit[E1, (Nothing, B)]
Zips this result together with the specified result, in parallel.
Zips this result together with the specified result, in parallel.
- Definition Classes
- Exit
- final def zipWith[E1 >: E, B, C](that: Exit[E1, B])(f: (Nothing, B) ⇒ C, g: (Cause[E], Cause[E1]) ⇒ Cause[E1]): Exit[E1, C]
Zips this together with the specified result using the combination functions.
Zips this together with the specified result using the combination functions.
- Definition Classes
- Exit