Packages

final case class Succeeded[A](value: A) extends ExitResult[Nothing, A] with Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Succeeded
  2. ExitResult
  3. Serializable
  4. Serializable
  5. Product
  6. Equals
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Succeeded(value: A)

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. final def bimap[E1, A1](f: (Nothing) ⇒ E1, g: (A) ⇒ A1): ExitResult[E1, A1]

    Maps over both the error and value type.

    Maps over both the error and value type.

    Definition Classes
    ExitResult
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def flatMap[E1 >: Nothing, A1](f: (A) ⇒ ExitResult[E1, A1]): ExitResult[E1, A1]

    Flat maps over the value ty pe.

    Flat maps over the value ty pe.

    Definition Classes
    ExitResult
  10. final def fold[Z](failed: (Cause[Nothing]) ⇒ Z, completed: (A) ⇒ Z): Z

    Folds over the value or cause.

    Folds over the value or cause.

    Definition Classes
    ExitResult
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def interrupted: Boolean

    Determines if the result is interrupted.

    Determines if the result is interrupted.

    Definition Classes
    ExitResult
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def leftMap[E1](f: (Nothing) ⇒ E1): ExitResult[E1, A]

    Maps over the error type.

    Maps over the error type.

    Definition Classes
    ExitResult
  15. final def map[A1](f: (A) ⇒ A1): ExitResult[Nothing, A1]

    Maps over the value type.

    Maps over the value type.

    Definition Classes
    ExitResult
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def redeem[E1, B](failed: (Cause[Nothing]) ⇒ IO[E1, B], completed: (A) ⇒ IO[E1, B]): IO[E1, B]

    Effectfully folds over the value or cause.

    Effectfully folds over the value or cause.

    Definition Classes
    ExitResult
  20. final def succeeded: Boolean

    Determines if the result is a success.

    Determines if the result is a success.

    Definition Classes
    ExitResult
  21. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  22. final def toEither: Either[Throwable, A]

    Converts the ExitResult to an Either[Throwable, A], by wrapping the cause in FiberFailure (if the result is failed).

    Converts the ExitResult to an Either[Throwable, A], by wrapping the cause in FiberFailure (if the result is failed).

    Definition Classes
    ExitResult
  23. val value: A
  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
    @native() @throws( ... )
  27. final def zip[E1 >: Nothing, B](that: ExitResult[E1, B]): ExitResult[E1, (A, B)]

    Zips this result together with the specified result.

    Zips this result together with the specified result.

    Definition Classes
    ExitResult
  28. final def zipPar[E1 >: Nothing, B](that: ExitResult[E1, B]): ExitResult[E1, (A, B)]

    Zips this result together with the specified result, in parallel.

    Zips this result together with the specified result, in parallel.

    Definition Classes
    ExitResult
  29. final def zipWith[E1 >: Nothing, B, C](that: ExitResult[E1, B])(f: (A, B) ⇒ C, g: (Cause[Nothing], Cause[E1]) ⇒ Cause[E1]): ExitResult[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
    ExitResult

Inherited from ExitResult[Nothing, A]

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped