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. sealed trait Done extends AnyRef

    Permalink
  5. trait ExceptionHandler[E] extends AnyRef

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

    Permalink
  7. final case class Left[+L, +R](value: L)(implicit evidence$21: ExceptionHandler[L]) extends IO[L, R] with Product with Serializable

    Permalink

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

  8. 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.

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

    Permalink
  10. final case class Right[+L, +R](value: R)(implicit evidence$15: ExceptionHandler[L]) extends IO[L, R] with Product with Serializable

    Permalink

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

  11. 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.

  12. 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 Done extends Done with Product with Serializable

    Permalink
  7. object ExceptionHandler extends LazyLogging

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

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  11. val done: 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 fromFuture[L, R](future: Future[R])(implicit arg0: ExceptionHandler[L], ec: ExecutionContext): Defer[L, R]

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

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

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  23. final def isInstanceOf[T0]: Boolean

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

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

    Permalink
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  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. def toString(): String

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

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

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

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

    Permalink
  38. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(): Unit

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

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

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

    Permalink

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped