Packages

o

zio

UIO

object UIO

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UIO
  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 absolve[A](v: UIO[Either[Nothing, A]]): UIO[A]

    See also

    See zio.ZIO.absolve

  5. final def allowInterrupt: UIO[Unit]

  6. final def apply[A](a: ⇒ A): UIO[A]

    See also

    See zio.ZIO.apply

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. final def bracket[A, B](acquire: UIO[A], release: (A) ⇒ UIO[_], use: (A) ⇒ UIO[B]): UIO[B]

    See also

    See bracket zio.ZIO

  9. final def bracket[A](acquire: UIO[A]): BracketAcquire[Any, Nothing, A]

    See also

    See bracket zio.ZIO

  10. final def bracketExit[A, B](acquire: UIO[A], release: (A, Exit[Nothing, B]) ⇒ UIO[_], use: (A) ⇒ UIO[B]): UIO[B]

    See also

    See bracketExit zio.ZIO

  11. final def bracketExit[A](acquire: UIO[A]): BracketExitAcquire[Any, Nothing, A]

    See also

    See bracketExit zio.ZIO

  12. final def checkInterruptible[A](f: (InterruptStatus) ⇒ UIO[A]): UIO[A]

  13. final def checkSupervised[A](f: (SuperviseStatus) ⇒ UIO[A]): UIO[A]

  14. final def checkTraced[A](f: (TracingStatus) ⇒ UIO[A]): UIO[A]

    See also

    See zio.ZIO.checkTraced

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

    See also

    See zio.ZIO.children

  16. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  17. final def collectAll[A](in: Iterable[UIO[A]]): UIO[List[A]]

    See also

    See zio.ZIO.collectAll

  18. final def collectAllPar[A](as: Iterable[UIO[A]]): UIO[List[A]]

  19. final def collectAllParN[A](n: Int)(as: Iterable[UIO[A]]): UIO[List[A]]

  20. final def collectAllSuccesses[A](in: Iterable[UIO[A]]): UIO[List[A]]

  21. final def collectAllSuccessesPar[A](as: Iterable[UIO[A]]): UIO[List[A]]

  22. final def collectAllSuccessesParN[A](n: Int)(as: Iterable[UIO[A]]): UIO[List[A]]

  23. final def collectAllWith[A, B](in: Iterable[UIO[A]])(f: PartialFunction[A, B]): UIO[List[B]]

  24. final def collectAllWithPar[A, B](as: Iterable[UIO[A]])(f: PartialFunction[A, B]): UIO[List[B]]

  25. final def collectAllWithParN[A, B](n: Int)(as: Iterable[UIO[A]])(f: PartialFunction[A, B]): UIO[List[B]]

  26. final def descriptor: UIO[Descriptor]

    See also

    See zio.ZIO.descriptor

  27. final def descriptorWith[A](f: (Descriptor) ⇒ UIO[A]): UIO[A]

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

    See also

    See zio.ZIO.die

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

    See also

    See zio.ZIO.dieMessage

  30. final def done[A](r: Exit[Nothing, A]): UIO[A]

    See also

    See zio.ZIO.done

  31. final def effectAsync[A](register: ((UIO[A]) ⇒ Unit) ⇒ Unit): UIO[A]

    See also

    See zio.ZIO.effectAsync

  32. final def effectAsyncInterrupt[A](register: ((UIO[A]) ⇒ Unit) ⇒ Either[Canceler, UIO[A]]): UIO[A]

  33. final def effectAsyncM[A](register: ((UIO[A]) ⇒ Unit) ⇒ UIO[_]): UIO[A]

  34. final def effectAsyncMaybe[A](register: ((UIO[A]) ⇒ Unit) ⇒ Option[UIO[A]]): UIO[A]

  35. final def effectSuspendTotal[A](uio: ⇒ UIO[A]): UIO[A]

  36. final def effectSuspendTotalWith[A](p: (Platform) ⇒ UIO[A]): UIO[A]

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

    See also

    See zio.ZIO.effectTotal

  38. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  39. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  40. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  41. final def flatten[A](uio: UIO[UIO[A]]): UIO[A]

    See also

    See zio.ZIO.flatten

  42. final def foldLeft[S, A](in: Iterable[A])(zero: S)(f: (S, A) ⇒ UIO[S]): UIO[S]

    See also

    See zio.ZIO.foldLeft

  43. final def foreach[A, B](in: Iterable[A])(f: (A) ⇒ UIO[B]): UIO[List[B]]

    See also

    See zio.ZIO.foreach

  44. final def foreachPar[A, B](as: Iterable[A])(fn: (A) ⇒ UIO[B]): UIO[List[B]]

    See also

    See zio.ZIO.foreachPar

  45. final def foreachParN[A, B](n: Int)(as: Iterable[A])(fn: (A) ⇒ UIO[B]): UIO[List[B]]

    See also

    See zio.ZIO.foreachParN

  46. final def foreachParN_[A](n: Int)(as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

  47. final def foreachPar_[A](as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

    See also

    See zio.ZIO.foreachPar_

  48. final def foreach_[A](as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

    See also

    See zio.ZIO.foreach_

  49. final def forkAll[A](as: Iterable[UIO[A]]): UIO[Fiber[Nothing, List[A]]]

    See also

    See zio.ZIO.forkAll

  50. final def forkAll_[A](as: Iterable[UIO[A]]): UIO[Unit]

    See also

    See zio.ZIO.forkAll_

  51. final def fromEither[A](v: ⇒ Either[Nothing, A]): UIO[A]

    See also

    See zio.ZIO.fromEither

  52. final def fromFiber[A](fiber: ⇒ Fiber[Nothing, A]): UIO[A]

    See also

    See zio.ZIO.fromFiber

  53. final def fromFiberM[A](fiber: UIO[Fiber[Nothing, A]]): UIO[A]

    See also

    See zio.ZIO.fromFiberM

  54. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  55. final def halt(cause: Cause[Nothing]): UIO[Nothing]

    See also

    See zio.ZIO.halt

  56. final def handleChildrenWith[A](uio: UIO[A])(supervisor: (IndexedSeq[Fiber[_, _]]) ⇒ UIO[_]): UIO[A]

  57. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  58. final val interrupt: UIO[Nothing]

    See also

    See zio.ZIO.interrupt

  59. final def interruptChildren[A](uio: UIO[A]): UIO[A]

  60. final def interruptible[A](uio: UIO[A]): UIO[A]

  61. final def interruptibleMask[A](k: (InterruptStatusRestore) ⇒ UIO[A]): UIO[A]

  62. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  63. final def left[A](a: A): UIO[Either[A, Nothing]]

    See also

    See zio.ZIO.left

  64. final def lock[A](executor: Executor)(uio: UIO[A]): UIO[A]

    See also

    See zio.ZIO.lock

  65. final def mergeAll[A, B](in: Iterable[UIO[A]])(zero: B)(f: (B, A) ⇒ B): UIO[B]

    See also

    See zio.ZIO.mergeAll

  66. final def mergeAllPar[A, B](in: Iterable[UIO[A]])(zero: B)(f: (B, A) ⇒ B): UIO[B]

    See also

    See zio.ZIO.mergeAllPar

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

    See also

    See zio.ZIO.never

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

    See also

    See zio.ZIO.none

  70. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  71. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  72. final def raceAll[A](uio: UIO[A], uios: Iterable[UIO[A]]): UIO[A]

    See also

    See zio.ZIO.raceAll

  73. final def reduceAll[A](a: UIO[A], as: Iterable[UIO[A]])(f: (A, A) ⇒ A): UIO[A]

    See also

    See zio.ZIO.reduceAll

  74. final def reduceAllPar[A](a: UIO[A], as: Iterable[UIO[A]])(f: (A, A) ⇒ A): UIO[A]

  75. def replicate[A](n: Int)(effect: UIO[A]): Iterable[UIO[A]]

    See also

    See zio.ZIO.replicate

  76. final def reserve[A, B](reservation: UIO[Reservation[Any, Nothing, A]])(use: (A) ⇒ UIO[B]): UIO[B]

    See also

    See zio.ZIO.reserve

  77. def right[B](b: B): UIO[Either[Nothing, B]]

    See also

    zio.ZIO.right

  78. final def runtime: UIO[Runtime[Any]]

    See also

    See zio.ZIO.runtime

  79. final def sequence[A](in: Iterable[UIO[A]]): UIO[List[A]]

    See zio.ZIO.sequence

  80. final def sequencePar[A](as: Iterable[UIO[A]]): UIO[List[A]]

    See also

    See zio.ZIO.sequencePar

  81. final def sequenceParN[A](n: Int)(as: Iterable[UIO[A]]): UIO[List[A]]

    See zio.ZIO.sequenceParN

  82. def some[A](a: A): UIO[Option[A]]

    See also

    zio.ZIO.some

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

    See also

    See zio.ZIO.succeed

  84. final def superviseStatus[A](status: SuperviseStatus)(uio: UIO[A]): UIO[A]

  85. final def supervised[A](uio: UIO[A]): UIO[A]

    See also

    See zio.ZIO.supervised

  86. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  87. def toString(): String
    Definition Classes
    AnyRef → Any
  88. final def trace: UIO[ZTrace]

    See also

    See zio.ZIO.trace

  89. final def traced[A](uio: UIO[A]): UIO[A]

    See also

    See zio.ZIO.traced

  90. final def traverse[A, B](in: Iterable[A])(f: (A) ⇒ UIO[B]): UIO[List[B]]

    See also

    See zio.ZIO.traverse

  91. final def traversePar[A, B](in: Iterable[A])(f: (A) ⇒ UIO[B]): UIO[List[B]]

    See also

    See zio.ZIO.traversePar

  92. final def traverseParN[A, B](n: Int)(as: Iterable[A])(fn: (A) ⇒ UIO[B]): UIO[List[B]]

  93. final def traverseParN_[A](n: Int)(as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

  94. final def traversePar_[A](as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

  95. final def traverse_[A](as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

    See also

    See zio.ZIO.traverse_

  96. final def uninterruptible[A](uio: UIO[A]): UIO[A]

  97. final def uninterruptibleMask[A](k: (InterruptStatusRestore) ⇒ UIO[A]): UIO[A]

  98. final val unit: UIO[Unit]

    See also

    See zio.ZIO.unit

  99. final def unsupervised[R, E, A](uio: UIO[A]): UIO[A]

    See also

    See zio.ZIO.unsupervised.

  100. final def untraced[A](uio: UIO[A]): UIO[A]

    See also

    See zio.ZIO.untraced

  101. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  102. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  103. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  104. final def when(b: Boolean)(uio: UIO[_]): UIO[Unit]

    See also

    See zio.ZIO.when

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

    See also

    See zio.ZIO.whenCase

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

  107. final def whenM(b: UIO[Boolean])(uio: UIO[_]): UIO[Unit]

    See also

    See zio.ZIO.whenM

  108. final val yieldNow: UIO[Unit]

    See also

    See zio.ZIO.yieldNow

Deprecated Value Members

  1. final def succeedLazy[A](a: ⇒ A): UIO[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use effectTotal

  2. final def suspend[A](uio: ⇒ UIO[A]): UIO[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use effectSuspendTotal

  3. final def suspendWith[A](p: (Platform) ⇒ UIO[A]): UIO[A]
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use effectSuspendTotalWith

Inherited from AnyRef

Inherited from Any

Ungrouped