Object/Trait

swaydb

IO

Related Docs: trait IO | package swaydb

Permalink

object IO

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IO
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type ApiIO[T] = IO[API, T]

    Permalink

    IO type used to access database APIs.

  2. type BootIO[T] = IO[Boot, T]

    Permalink

    IO type for database boot up.

  3. final case class Defer[+E, +A] extends LazyLogging with Product with Serializable

    Permalink
  4. trait ExceptionHandler[E] extends AnyRef

    Permalink
  5. implicit class IterableIOImplicit[E, A] extends AnyRef

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

    Permalink

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

  7. type NothingIO[T] = IO[Nothing, T]

    Permalink

    IO type with Nothing error type.

    IO type with Nothing error type. Nothing indicates this IO type can never result in an error.

  8. trait RecoverableExceptionHandler[E] extends ExceptionHandler[E]

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

    Permalink

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

  10. type ThrowableIO[T] = IO[Throwable, T]

    Permalink

    IO type with Throwable error type.

    IO type with Throwable error type. Here all errors are returned as exception.

  11. type UnitIO[T] = IO[Unit, T]

    Permalink

    IO type with Unit error type.

    IO type with Unit error type. Unit indicates this IO type can never result in an error.

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. object Catch

    Permalink
  5. object Defer extends LazyLogging with Serializable

    Permalink

    ********************************** ********************************** ********************************** ************ DEFERRED ************ ********************************** ********************************** *********************************

  6. object ExceptionHandler extends LazyLogging

    Permalink
  7. final def apply[E, A](f: ⇒ A)(implicit arg0: ExceptionHandler[E]): IO[E, A]

    Permalink
    Annotations
    @inline()
  8. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. val emptyBytes: Right[Nothing, Slice[Byte]]

    Permalink
  11. val emptySeqBytes: Right[Nothing, Seq[Slice[Byte]]]

    Permalink
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def failed[E, A](exceptionMessage: String)(implicit arg0: ExceptionHandler[E]): Left[E, A]

    Permalink
    Annotations
    @inline()
  15. final def failed[E, A](exception: Throwable)(implicit arg0: ExceptionHandler[E]): Left[E, A]

    Permalink
    Annotations
    @inline()
  16. val false: Right[Nothing, Boolean]

    Permalink
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def fromTry[E, A](tryBlock: Try[A])(implicit arg0: ExceptionHandler[E]): IO[E, A]

    Permalink
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def javaExceptionHandler(): ExceptionHandler.type

    Permalink
  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. val none: Right[Nothing, Option[Nothing]]

    Permalink
  25. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  27. val okIO: Right[Nothing, OK]

    Permalink
  28. val someFalse: IO[Nothing, Some[Boolean]]

    Permalink
  29. val someTrue: IO[Nothing, Some[Boolean]]

    Permalink
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  31. final def throwable(message: String, inner: Throwable): Throwable

    Permalink
    Annotations
    @inline()
  32. final def throwable(message: String): Throwable

    Permalink
    Annotations
    @inline()
  33. final def throws[T](message: String): T

    Permalink
    Annotations
    @inline()
  34. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  35. val true: Right[Nothing, Boolean]

    Permalink
  36. final def tryOrNone[A](block: ⇒ A): Option[A]

    Permalink
    Annotations
    @inline()
  37. val unit: Right[Nothing, Unit]

    Permalink
  38. val unitUnit: Right[Nothing, Right[Nothing, Unit]]

    Permalink
  39. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def when[E, T](condition: ⇒ Boolean, onTrue: ⇒ IO[E, T], onFalse: ⇒ IO[E, T])(implicit arg0: ExceptionHandler[E]): IO[E, T]

    Permalink
    Annotations
    @inline()
  43. final def when[E, T, F](condition: ⇒ Boolean, onTrue: ⇒ IO[E, T], onFalse: ⇒ T)(f: (T) ⇒ IO[E, F])(implicit arg0: ExceptionHandler[E]): IO[E, F]

    Permalink
    Annotations
    @inline()
  44. val zero: Right[Nothing, Int]

    Permalink
  45. val zeroZero: IO[Nothing, Right[Nothing, Int]]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped