Object/Trait

swaydb.data

IO

Related Docs: trait IO | package data

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. sealed trait Async[+T] extends AnyRef

    Permalink
  2. sealed trait Error extends AnyRef

    Permalink
  3. final case class Failure[+T](error: Error) extends IO[T] with Async[T] with Product with Serializable

    Permalink
  4. implicit class IterableIOImplicit[T] extends AnyRef

    Permalink
  5. final case class Later[T](value: (Unit) ⇒ T, error: Busy) extends Async[T] with Product with Serializable

    Permalink
  6. final case class Success[+T](value: T) extends IO[T] with Async[T] with Product with Serializable

    Permalink

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 Async

    Permalink
  5. object Catch

    Permalink
  6. object Error

    Permalink
  7. object Exception

    Permalink

    Exception types for all known IO.Errors that can occur.

    Exception types for all known IO.Errors that can occur. Each IO.Error can be converted to Exception which which can then be converted back to IO.Error.

    SwayDB's code itself does not use these exception it uses IO.Error type. These types are handy when converting an IO type to scala.util.Try by the client using IO.toTry.

  8. object Failure extends Serializable

    Permalink
  9. object Later extends Serializable

    Permalink
  10. final def apply[T](f: ⇒ T): IO[T]

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  13. val emptyBytes: Success[Slice[Byte]]

    Permalink
  14. val emptyReader: Success[SliceReader]

    Permalink
  15. val emptySeqBytes: Success[Seq[Slice[Byte]]]

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  18. val false: Success[Boolean]

    Permalink
  19. def fromTry[T](tryBlock: Try[T]): IO[T]

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  24. val none: Success[None.type]

    Permalink
  25. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  29. val true: Success[Boolean]

    Permalink
  30. final def tryOrNone[T](block: ⇒ T): Option[T]

    Permalink
    Annotations
    @inline()
  31. val unit: Success[Unit]

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. val zero: Success[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