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 done: Done

    Permalink
  11. val doneIO: Right[Nothing, Done]

    Permalink
  12. val emptyBytes: Right[Nothing, Slice[Byte]]

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

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

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

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

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

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

    Permalink
  19. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def fromFuture[L, R](future: Future[R])(implicit arg0: ExceptionHandler[L], ec: ExecutionContext): Defer[L, R]

    Permalink
  21. def fromTry[E, A](tryBlock: Try[A])(implicit arg0: ExceptionHandler[E]): IO[E, A]

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

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

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

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

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

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

    Permalink
  28. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  30. val someFalse: IO[Nothing, Some[Boolean]]

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

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

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

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

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

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

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

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

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

    Permalink
  40. final def wait(): Unit

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

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

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

    Permalink
    Annotations
    @inline()
  44. 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()
  45. val zero: Right[Nothing, Int]

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

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped