Packages

o

zio

RIO

object RIO

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def _1[R, A, B](implicit ev: <:<[R, (A, B)]): RIO[R, A]

    See also

    See zio.ZIO._1

  5. final def _2[R, A, B](implicit ev: <:<[R, (A, B)]): RIO[R, B]

    See also

    See zio.ZIO._2

  6. final def absolve[R, A](v: RIO[R, Either[Throwable, A]]): RIO[R, A]

    See also

    See zio.ZIO.absolve

  7. final def access[R]: AccessPartiallyApplied[R]

    See also

    See zio.ZIO.access

  8. final def accessM[R]: AccessMPartiallyApplied[R]

    See also

    See zio.ZIO.accessM

  9. final def allowInterrupt: UIO[Unit]

  10. def apply[A](a: ⇒ A): Task[A]

    See also

    See zio.ZIO.apply

  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. final def bracket[R, A, B](acquire: RIO[R, A], release: (A) ⇒ ZIO[R, Nothing, _], use: (A) ⇒ RIO[R, B]): RIO[R, B]

    See also

    See bracket zio.ZIO

  13. final def bracket[R, A](acquire: RIO[R, A]): BracketAcquire[R, Throwable, A]

    See also

    See bracket zio.ZIO

  14. final def bracketExit[R, A, B](acquire: RIO[R, A], release: (A, Exit[Throwable, B]) ⇒ ZIO[R, Nothing, _], use: (A) ⇒ RIO[R, B]): RIO[R, B]

    See also

    See bracketExit zio.ZIO

  15. final def bracketExit[R, A](acquire: RIO[R, A]): BracketExitAcquire[R, Throwable, A]

    See also

    See bracketExit zio.ZIO

  16. final def checkInterruptible[R, A](f: (InterruptStatus) ⇒ RIO[R, A]): RIO[R, A]

  17. final def checkSupervised[R, A](f: (SuperviseStatus) ⇒ RIO[R, A]): RIO[R, A]

  18. final def checkTraced[R, A](f: (TracingStatus) ⇒ RIO[R, A]): RIO[R, A]

    See also

    See zio.ZIO.checkTraced

  19. final def children: UIO[IndexedSeq[Fiber[_, _]]]

    See also

    See zio.ZIO.children

  20. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  21. final def collectAll[R, A](in: Iterable[RIO[R, A]]): RIO[R, List[A]]

    See also

    See zio.ZIO.collectAll

  22. final def collectAllPar[R, A](as: Iterable[RIO[R, A]]): RIO[R, List[A]]

  23. final def collectAllParN[R, A](n: Int)(as: Iterable[RIO[R, A]]): RIO[R, List[A]]

  24. final def descriptor: UIO[Descriptor]

    See also

    See zio.ZIO.descriptor

  25. final def descriptorWith[R, A](f: (Descriptor) ⇒ RIO[R, A]): RIO[R, A]

  26. final def die(t: Throwable): UIO[Nothing]

    See also

    See zio.ZIO.die

  27. final def dieMessage(message: String): UIO[Nothing]

    See also

    See zio.ZIO.dieMessage

  28. final def done[A](r: Exit[Throwable, A]): Task[A]

    See also

    See zio.ZIO.done

  29. final def effect[A](effect: ⇒ A): Task[A]

    See also

    See zio.ZIO.effect

  30. final def effectAsync[R, A](register: ((RIO[R, A]) ⇒ Unit) ⇒ Unit): RIO[R, A]

    See also

    See zio.ZIO.effectAsync

  31. final def effectAsyncInterrupt[R, A](register: ((RIO[R, A]) ⇒ Unit) ⇒ Either[Canceler, RIO[R, A]]): RIO[R, A]

  32. final def effectAsyncM[R, A](register: ((RIO[R, A]) ⇒ Unit) ⇒ ZIO[R, Nothing, _]): RIO[R, A]

  33. final def effectAsyncMaybe[A](register: ((Task[A]) ⇒ Unit) ⇒ Option[Task[A]]): Task[A]

  34. final def effectSuspend[R, A](rio: ⇒ RIO[R, A]): RIO[R, A]

    Returns a lazily constructed effect, whose construction may itself require effects.

    Returns a lazily constructed effect, whose construction may itself require effects. When no environment is required (i.e., when R == Any) it is conceptually equivalent to flatten(effect(io)).

  35. final def effectSuspendTotal[R, A](rio: ⇒ RIO[R, A]): RIO[R, A]

  36. final def effectSuspendTotalWith[R, A](p: (Platform) ⇒ RIO[R, A]): RIO[R, A]

  37. final def effectSuspendWith[R, A](p: (Platform) ⇒ RIO[R, A]): RIO[R, A]

    Returns a lazily constructed effect, whose construction may itself require effects.

    Returns a lazily constructed effect, whose construction may itself require effects. When no environment is required (i.e., when R == Any) it is conceptually equivalent to flatten(effect(io)).

  38. final def effectTotal[A](effect: ⇒ A): UIO[A]

    See also

    See zio.ZIO.effectTotal

  39. final def environment[R]: ZIO[R, Nothing, R]

    See also

    See zio.ZIO.environment

  40. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  41. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  42. final def fail(error: Throwable): Task[Nothing]

    See also

    See zio.ZIO.fail

  43. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  44. final def firstSuccessOf[R, A](rio: RIO[R, A], rest: Iterable[RIO[R, A]]): RIO[R, A]

  45. final def flatten[R, A](taskr: RIO[R, RIO[R, A]]): RIO[R, A]

    See also

    See zio.ZIO.flatten

  46. final def foldLeft[R, S, A](in: Iterable[A])(zero: S)(f: (S, A) ⇒ RIO[R, S]): RIO[R, S]

    See also

    See zio.ZIO.foldLeft

  47. final def foreach[R, A, B](in: Iterable[A])(f: (A) ⇒ RIO[R, B]): RIO[R, List[B]]

    See also

    See zio.ZIO.foreach

  48. final def foreachPar[R, A, B](as: Iterable[A])(fn: (A) ⇒ RIO[R, B]): RIO[R, List[B]]

    See also

    See zio.ZIO.foreachPar

  49. final def foreachParN[R, A, B](n: Int)(as: Iterable[A])(fn: (A) ⇒ RIO[R, B]): RIO[R, List[B]]

    See also

    See zio.ZIO.foreachParN

  50. final def foreachParN_[R, A, B](n: Int)(as: Iterable[A])(f: (A) ⇒ RIO[R, _]): RIO[R, Unit]

  51. final def foreachPar_[R, A, B](as: Iterable[A])(f: (A) ⇒ RIO[R, _]): RIO[R, Unit]

    See also

    See zio.ZIO.foreachPar_

  52. final def foreach_[R, A](as: Iterable[A])(f: (A) ⇒ RIO[R, _]): RIO[R, Unit]

    See also

    See zio.ZIO.foreach_

  53. final def forkAll[R, A](as: Iterable[RIO[R, A]]): ZIO[R, Nothing, Fiber[Throwable, List[A]]]

    See also

    See zio.ZIO.forkAll

  54. final def forkAll_[R, A](as: Iterable[RIO[R, A]]): ZIO[R, Nothing, Unit]

    See also

    See zio.ZIO.forkAll_

  55. final def fromEither[A](v: ⇒ Either[Throwable, A]): Task[A]

    See also

    See zio.ZIO.fromEither

  56. final def fromFiber[A](fiber: ⇒ Fiber[Throwable, A]): Task[A]

    See also

    See zio.ZIO.fromFiber

  57. final def fromFiberM[A](fiber: Task[Fiber[Throwable, A]]): Task[A]

    See also

    See zio.ZIO.fromFiberM

  58. final def fromFunction[R, A](f: (R) ⇒ A): ZIO[R, Nothing, A]

  59. final def fromFunctionM[R, A](f: (R) ⇒ Task[A]): RIO[R, A]

  60. final def fromFuture[A](make: (ExecutionContext) ⇒ Future[A]): Task[A]

    See also

    See zio.ZIO.fromFuture

  61. final def fromTry[A](value: ⇒ Try[A]): Task[A]

    See also

    See zio.ZIO.fromTry

  62. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  63. final def halt(cause: Cause[Throwable]): Task[Nothing]

    See also

    See zio.ZIO.halt

  64. final def haltWith[R](function: (() ⇒ ZTrace) ⇒ Cause[Throwable]): RIO[R, Nothing]

    See also

    See zio.ZIO.haltWith

  65. final def handleChildrenWith[R, A](taskr: RIO[R, A])(supervisor: (IndexedSeq[Fiber[_, _]]) ⇒ ZIO[R, Nothing, _]): RIO[R, A]

  66. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  67. final def identity[R]: ZIO[R, Nothing, R]

    See also

    See zio.ZIO.identity

  68. final val interrupt: UIO[Nothing]

    See also

    See zio.ZIO.interrupt

  69. final def interruptChildren[R, A](taskr: RIO[R, A]): RIO[R, A]

  70. final def interruptible[R, A](taskr: RIO[R, A]): RIO[R, A]

  71. final def interruptibleMask[R, A](k: (InterruptStatusRestore) ⇒ RIO[R, A]): RIO[R, A]

  72. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  73. final def left[R, A](a: A): RIO[R, Either[A, Nothing]]

    See also

    See zio.ZIO.left

  74. final def lock[R, A](executor: Executor)(taskr: RIO[R, A]): RIO[R, A]

    See also

    See zio.ZIO.lock

  75. final def mergeAll[R, A, B](in: Iterable[RIO[R, A]])(zero: B)(f: (B, A) ⇒ B): RIO[R, B]

    See also

    See zio.ZIO.mergeAll

  76. final def mergeAllPar[R, A, B](in: Iterable[RIO[R, A]])(zero: B)(f: (B, A) ⇒ B): RIO[R, B]

    See also

    See zio.ZIO.mergeAllPar

  77. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  78. final val never: UIO[Nothing]

    See also

    See zio.ZIO.never

  79. final val none: UIO[Option[Nothing]]

    See also

    See zio.ZIO.none

  80. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  81. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  82. final def provide[R, A](r: R): (RIO[R, A]) ⇒ Task[A]

    See also

    See zio.ZIO.provide

  83. final def raceAll[R, R1 <: R, A](taskr: RIO[R, A], taskrs: Iterable[RIO[R1, A]]): RIO[R1, A]

    See also

    See zio.ZIO.raceAll

  84. final def reduceAll[R, R1 <: R, A](a: RIO[R, A], as: Iterable[RIO[R1, A]])(f: (A, A) ⇒ A): RIO[R1, A]

    See also

    See zio.ZIO.reduceAll

  85. final def reduceAllPar[R, R1 <: R, A](a: RIO[R, A], as: Iterable[RIO[R1, A]])(f: (A, A) ⇒ A): RIO[R1, A]

  86. def replicate[R, A](n: Int)(effect: RIO[R, A]): Iterable[RIO[R, A]]

    See also

    See zio.ZIO.replicate

  87. final def require[R, A](error: Throwable): (IO[Throwable, Option[A]]) ⇒ IO[Throwable, A]

    See also

    See zio.ZIO.require

  88. final def reserve[R, A, B](reservation: RIO[R, Reservation[R, Throwable, A]])(use: (A) ⇒ RIO[R, B]): RIO[R, B]

    See also

    See zio.ZIO.reserve

  89. def right[R, B](b: B): RIO[R, Either[Nothing, B]]

    See also

    zio.ZIO.right

  90. final def runtime[R]: ZIO[R, Nothing, Runtime[R]]

    See also

    See zio.ZIO.runtime

  91. final def sequence[R, A](in: Iterable[RIO[R, A]]): RIO[R, List[A]]

    See zio.ZIO.sequence

  92. final def sequencePar[R, A](as: Iterable[RIO[R, A]]): RIO[R, List[A]]

    See zio.ZIO.sequencePar

  93. final def sequenceParN[R, A](n: Int)(as: Iterable[RIO[R, A]]): RIO[R, List[A]]

    See zio.ZIO.sequenceParN

  94. final def sleep(duration: Duration): RIO[Clock, Unit]

    See also

    See zio.ZIO.sleep

  95. def some[R, A](a: A): RIO[R, Option[A]]

    See also

    zio.ZIO.some

  96. final def succeed[A](a: A): UIO[A]

    See also

    See zio.ZIO.succeed

  97. final def succeedLazy[A](a: ⇒ A): UIO[A]

    See also

    See zio.ZIO.succeedLazy

  98. final def superviseStatus[R, A](status: SuperviseStatus)(taskr: RIO[R, A]): RIO[R, A]

  99. final def supervised[R, A](taskr: RIO[R, A]): RIO[R, A]

    See also

    See zio.ZIO.supervised

  100. final def swap[R, A, B](implicit ev: <:<[R, (A, B)]): RIO[R, (B, A)]

    See also

    See zio.ZIO.swap

  101. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  102. def toString(): String
    Definition Classes
    AnyRef → Any
  103. final def trace: UIO[ZTrace]

    See also

    See zio.ZIO.trace

  104. final def traced[R, A](zio: RIO[R, A]): RIO[R, A]

    See also

    See zio.ZIO.traced

  105. final def traverse[R, A, B](in: Iterable[A])(f: (A) ⇒ RIO[R, B]): RIO[R, List[B]]

    See also

    See zio.ZIO.traverse

  106. final def traversePar[R, A, B](as: Iterable[A])(fn: (A) ⇒ RIO[R, B]): RIO[R, List[B]]

    See also

    See zio.ZIO.traversePar

  107. final def traverseParN[R, A, B](n: Int)(as: Iterable[A])(fn: (A) ⇒ RIO[R, B]): RIO[R, List[B]]

    Alias for ZIO.foreachParN

  108. final def traverseParN_[R, A](n: Int)(as: Iterable[A])(f: (A) ⇒ RIO[R, _]): RIO[R, Unit]

  109. final def traversePar_[R, A](as: Iterable[A])(f: (A) ⇒ RIO[R, _]): RIO[R, Unit]

  110. final def traverse_[R, A](as: Iterable[A])(f: (A) ⇒ RIO[R, _]): RIO[R, Unit]

    See also

    See zio.ZIO.traverse_

  111. final def uninterruptible[R, A](taskr: RIO[R, A]): RIO[R, A]

  112. final def uninterruptibleMask[R, A](k: (InterruptStatusRestore) ⇒ RIO[R, A]): RIO[R, A]

  113. final val unit: UIO[Unit]

    See also

    See zio.ZIO.unit

  114. final def unsandbox[R, A](v: IO[Cause[Throwable], A]): RIO[R, A]

    See also

    See zio.ZIO.unsandbox

  115. final def unsupervised[R, A](rio: RIO[R, A]): RIO[R, A]

  116. final def untraced[R, A](zio: RIO[R, A]): RIO[R, A]

    See also

    See zio.ZIO.untraced

  117. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  118. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  119. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  120. final def when[R](b: Boolean)(rio: RIO[R, _]): RIO[R, Unit]

    See also

    See zio.ZIO.when

  121. final def whenCase[R, E, A](a: A)(pf: PartialFunction[A, ZIO[R, E, _]]): ZIO[R, E, Unit]

    See also

    See zio.ZIO.whenCase

  122. final def whenCaseM[R, E, A](a: ZIO[R, E, A])(pf: PartialFunction[A, ZIO[R, E, _]]): ZIO[R, E, Unit]

    See also

    See zio.ZIO.whenCaseM

  123. final def whenM[R](b: RIO[R, Boolean])(rio: RIO[R, _]): RIO[R, Unit]

    See also

    See zio.ZIO.whenM

  124. final val yieldNow: UIO[Unit]

    See also

    See zio.ZIO.yieldNow

Deprecated Value Members

  1. final def suspend[R, A](rio: ⇒ RIO[R, A]): RIO[R, A]
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use effectSuspendTotal

  2. final def suspendWith[R, A](p: (Platform) ⇒ RIO[R, A]): RIO[R, A]
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use effectSuspendTotalWith

Inherited from AnyRef

Inherited from Any

Ungrouped