Class

swaydb.IO

Left

Related Doc: package IO

Permalink

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

********************* ********************** ********************** ******** LEFT ******** ********************** ********************** **********************

Linear Supertypes
Serializable, Serializable, Product, Equals, IO[L, R], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Left
  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 Left(value: L)(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[F >: L, B](io: ⇒ IO[F, B])(implicit arg0: ExceptionHandler[F]): IO[F, B]

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

    Permalink
    Definition Classes
    LeftIO
  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 exception: Throwable

    Permalink
  10. def exceptionHandler: ExceptionHandler[_]

    Permalink
    Definition Classes
    LeftIO
  11. def exists(f: (R) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    LeftIO
  12. def filter(p: (R) ⇒ Boolean): Left[L, R]

    Permalink
    Definition Classes
    LeftIO
  13. def finalize(): Unit

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

    Permalink
    Definition Classes
    LeftIO
  15. def flatten[F, B](implicit ev: <:<[R, IO[F, B]]): Left[F, B]

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

    Permalink
    Definition Classes
    LeftIO
  17. def get: R

    Permalink
    Definition Classes
    LeftIO
    Annotations
    @throws( ... )
  18. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    LeftIO
  20. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  21. def isLeft: Boolean

    Permalink
    Definition Classes
    LeftIO
  22. def isRecoverable: Boolean

    Permalink
  23. def isRight: Boolean

    Permalink
    Definition Classes
    LeftIO
  24. def left: Right[Throwable, L]

    Permalink
    Definition Classes
    LeftIO
  25. def map[B](f: (R) ⇒ B): Left[L, B]

    Permalink
    Definition Classes
    LeftIO
  26. final def ne(arg0: AnyRef): Boolean

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

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

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

    Permalink
    Definition Classes
    LeftIO
  30. def onLeftSideEffect(f: (Left[L, R]) ⇒ Unit): Left[L, R]

    Permalink
    Definition Classes
    LeftIO
  31. def onRightSideEffect(f: (R) ⇒ Unit): Left[L, R]

    Permalink
    Definition Classes
    LeftIO
  32. def orElse[L2 >: L, B >: R](default: ⇒ IO[L2, B])(implicit arg0: ExceptionHandler[L2]): IO[L2, B]

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

    Permalink
    Definition Classes
    LeftIO
  34. def recoverTo[F >: L, B](io: ⇒ Defer[F, B])(implicit arg0: ExceptionHandler[F]): Defer[F, B]

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

    Permalink
    Definition Classes
    LeftIO
  36. def right: Left[Throwable, R]

    Permalink
    Definition Classes
    LeftIO
  37. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

    Permalink
    Definition Classes
    LeftIO
  40. def toFuture: Future[R]

    Permalink
    Definition Classes
    LeftIO
  41. def toOption: Option[R]

    Permalink
    Definition Classes
    LeftIO
  42. def toOptionValue: IO[L, Option[R]]

    Permalink
    Definition Classes
    LeftIO
  43. def toTry: Try[R]

    Permalink
    Definition Classes
    LeftIO
  44. 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
    LeftIO
  45. val value: L

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

    Permalink
    Definition Classes
    LeftIO
  47. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. 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