Class

swaydb.IO

Right

Related Doc: package IO

Permalink

final case class Right[+L, +R](value: R)(implicit exceptionHandler: ExceptionHandler[L]) extends IO[L, R] with Product with Serializable

********************* ********************** ********************** ******** RIGHT ******* ********************** ********************** **********************

Linear Supertypes
Serializable, Serializable, Product, Equals, IO[L, R], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Right
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. IO
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Right(value: R)(implicit exceptionHandler: ExceptionHandler[L])

    Permalink

Type Members

  1. class WithFilter extends AnyRef

    Permalink
    Definition Classes
    IO

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def and[L2 >: L, B](io: ⇒ IO[L2, B])(implicit arg0: ExceptionHandler[L2]): IO[L2, B]

    Permalink
    Definition Classes
    RightIO
  5. def andThen[B](io: ⇒ B): IO[L, B]

    Permalink
    Definition Classes
    RightIO
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def exceptionHandler: ExceptionHandler[_]

    Permalink
    Definition Classes
    RightIO
  10. def exists(f: (R) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    RightIO
  11. def filter(p: (R) ⇒ Boolean): IO[L, R]

    Permalink
    Definition Classes
    RightIO
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def flatMap[F >: L, B](f: (R) ⇒ IO[F, B])(implicit arg0: ExceptionHandler[F]): IO[F, B]

    Permalink
    Definition Classes
    RightIO
  14. def flatten[F, B](implicit ev: <:<[R, IO[F, B]]): IO[F, B]

    Permalink
    Definition Classes
    RightIO
  15. def foreach[B](f: (R) ⇒ B): Unit

    Permalink
    Definition Classes
    RightIO
  16. def get: R

    Permalink
    Definition Classes
    RightIO
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. def getOrElse[B >: R](default: ⇒ B): B

    Permalink
    Definition Classes
    RightIO
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. def isLeft: Boolean

    Permalink
    Definition Classes
    RightIO
  21. def isRight: Boolean

    Permalink
    Definition Classes
    RightIO
  22. def left: Left[Throwable, L]

    Permalink
    Definition Classes
    RightIO
  23. def map[B](f: (R) ⇒ B): IO[L, B]

    Permalink
    Definition Classes
    RightIO
  24. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. def onCompleteSideEffect(f: (IO[L, R]) ⇒ Unit): IO[L, R]

    Permalink
    Definition Classes
    RightIO
  28. def onLeftSideEffect(f: (Left[L, R]) ⇒ Unit): Right[L, R]

    Permalink
    Definition Classes
    RightIO
  29. def onRightSideEffect(f: (R) ⇒ Unit): Right[L, R]

    Permalink
    Definition Classes
    RightIO
  30. def orElse[F >: L, B >: R](default: ⇒ IO[F, B])(implicit arg0: ExceptionHandler[F]): Right[F, B]

    Permalink
    Definition Classes
    RightIO
  31. def recover[B >: R](f: PartialFunction[L, B]): IO[L, B]

    Permalink
    Definition Classes
    RightIO
  32. def recoverWith[F >: L, B >: R](f: PartialFunction[L, IO[F, B]])(implicit arg0: ExceptionHandler[F]): IO[F, B]

    Permalink
    Definition Classes
    RightIO
  33. def right: Right[Throwable, R]

    Permalink
    Definition Classes
    RightIO
  34. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  35. def toDefer[L2 >: L](implicit arg0: ExceptionHandler[L2]): Defer[L2, R]

    Permalink
    Definition Classes
    IO
  36. def toEither: Either[L, R]

    Permalink
    Definition Classes
    RightIO
  37. def toFuture: Future[R]

    Permalink
    Definition Classes
    RightIO
  38. def toOption: Option[R]

    Permalink
    Definition Classes
    RightIO
  39. def toOptionValue: IO[L, Option[R]]

    Permalink
    Definition Classes
    RightIO
  40. def toTry: Try[R]

    Permalink
    Definition Classes
    RightIO
  41. def transform[B](f: (R) ⇒ B): IO[L, B]

    Permalink

    Difference between map and transform is that transform does not recovery from exception if the function F throws an Exception.

    Difference between map and transform is that transform does not recovery from exception if the function F throws an Exception.

    Definition Classes
    RightIO
  42. val value: R

    Permalink
  43. def valueOrElse[B](f: (R) ⇒ B, orElse: ⇒ B): B

    Permalink
    Definition Classes
    RightIO
  44. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def withFilter(p: (R) ⇒ Boolean): WithFilter

    Permalink
    Definition Classes
    IO
    Annotations
    @inline()

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from IO[L, R]

Inherited from AnyRef

Inherited from Any

Ungrouped