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

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. def absolve[A](v: UIO[Either[Nothing, A]]): UIO[A]

    See also

    See zio.ZIO.absolve

  5. def adopt(fiber: Fiber[Any, Any]): UIO[Boolean]

    See also

    See zio.ZIO.adopt

  6. def allowInterrupt: UIO[Unit]

  7. def apply[A](a: => A): UIO[A]

    See also

    See zio.ZIO.apply

  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. val awaitAllChildren: UIO[Unit]

  10. def bracket[A, B](acquire: UIO[A], release: (A) => UIO[Any], use: (A) => UIO[B]): UIO[B]

    See also

    See bracket zio.ZIO

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

    See also

    See bracket zio.ZIO

  12. def bracketExit[A, B](acquire: UIO[A], release: (A, Exit[Nothing, B]) => UIO[Any], use: (A) => UIO[B]): UIO[B]

    See also

    See bracketExit zio.ZIO

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

    See also

    See bracketExit zio.ZIO

  14. def checkInterruptible[A](f: (InterruptStatus) => UIO[A]): UIO[A]

  15. def checkTraced[A](f: (TracingStatus) => UIO[A]): UIO[A]

  16. def children: UIO[Iterable[Fiber[Any, Any]]]

    See also

    See zio.ZIO.children

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

    See also

    See zio.ZIO.collectAll

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

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

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

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

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

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

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

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

  27. def descriptor: UIO[Descriptor]

    See also

    See zio.ZIO.descriptor

  28. def descriptorWith[A](f: (Descriptor) => UIO[A]): UIO[A]

  29. def die(t: => Throwable): UIO[Nothing]

    See also

    See zio.ZIO.die

  30. def dieMessage(message: => String): UIO[Nothing]

    See also

    See zio.ZIO.dieMessage

  31. def disown(fiber: Fiber[Any, Any]): UIO[Boolean]

    See also

    See zio.ZIO.disown

  32. def done[A](r: => Exit[Nothing, A]): UIO[A]

    See also

    See zio.ZIO.done

  33. def effectAsync[A](register: ((UIO[A]) => Unit) => Any, blockingOn: List[Id] = Nil): UIO[A]

  34. def effectAsyncInterrupt[A](register: ((UIO[A]) => Unit) => Either[Canceler[Any], UIO[A]], blockingOn: List[Id] = Nil): UIO[A]

  35. def effectAsyncM[A](register: ((UIO[A]) => Unit) => UIO[Any]): UIO[A]

  36. def effectAsyncMaybe[A](register: ((UIO[A]) => Unit) => Option[UIO[A]], blockingOn: List[Id] = Nil): UIO[A]

  37. def effectSuspendTotal[A](uio: => UIO[A]): UIO[A]

  38. def effectSuspendTotalWith[A](p: (Platform, Id) => UIO[A]): UIO[A]

  39. def effectTotal[A](effect: => A): UIO[A]

  40. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  41. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  42. val fiberId: UIO[Id]

  43. def filter[A](as: Iterable[A])(f: (A) => UIO[Boolean]): UIO[List[A]]

  44. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  45. def firstSuccessOf[A](uio: UIO[A], rest: Iterable[UIO[A]]): UIO[A]

  46. def flatten[A](uio: UIO[UIO[A]]): UIO[A]

    See also

    See zio.ZIO.flatten

  47. def foldLeft[S, A](in: Iterable[A])(zero: S)(f: (S, A) => UIO[S]): UIO[S]

    See also

    See zio.ZIO.foldLeft

  48. def foldRight[S, A](in: Iterable[A])(zero: S)(f: (A, S) => UIO[S]): UIO[S]

    See also

    See zio.ZIO.foldRight

  49. final def foreach[A, B](in: Chunk[A])(f: (A) => UIO[B]): UIO[Chunk[B]]

  50. final def foreach[A, B](in: Option[A])(f: (A) => UIO[B]): UIO[Option[B]]

  51. def foreach[A, B](in: Iterable[A])(f: (A) => UIO[B]): UIO[List[B]]

  52. final def foreachPar[A, B](as: Chunk[A])(fn: (A) => UIO[B]): UIO[Chunk[B]]

  53. def foreachPar[A, B](as: Iterable[A])(fn: (A) => UIO[B]): UIO[List[B]]

  54. def foreachParN[A, B](n: Int)(as: Iterable[A])(fn: (A) => UIO[B]): UIO[List[B]]

  55. def foreachParN_[A](n: Int)(as: Iterable[A])(f: (A) => UIO[Any]): UIO[Unit]

  56. final def foreachPar_[A](as: Chunk[A])(f: (A) => UIO[Any]): UIO[Unit]

  57. def foreachPar_[A](as: Iterable[A])(f: (A) => UIO[Any]): UIO[Unit]

  58. final def foreach_[A](as: Chunk[A])(f: (A) => UIO[Any]): UIO[Unit]

  59. def foreach_[A](as: Iterable[A])(f: (A) => UIO[Any]): UIO[Unit]

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

    See also

    See zio.ZIO.forkAll

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

    See also

    See zio.ZIO.forkAll_

  62. def fromEither[A](v: => Either[Nothing, A]): UIO[A]

    See also

    See zio.ZIO.fromEither

  63. def fromFiber[A](fiber: => Fiber[Nothing, A]): UIO[A]

    See also

    See zio.ZIO.fromFiber

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

    See also

    See zio.ZIO.fromFiberM

  65. def fromFunction[A](f: (Any) => A): UIO[A]

  66. def fromFunctionM[A](f: (Any) => UIO[A]): UIO[A]

  67. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  68. def halt(cause: => Cause[Nothing]): UIO[Nothing]

    See also

    See zio.ZIO.halt

  69. def haltWith(function: (() => ZTrace) => Cause[Nothing]): UIO[Nothing]

  70. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  71. def identity: UIO[Any]

  72. def ifM(b: UIO[Boolean]): IfM[Any, Nothing]

    See also

    zio.ZIO.ifM

  73. val interrupt: UIO[Nothing]

    See also

    See zio.ZIO.interrupt

  74. def interruptAllChildren: UIO[Unit]

    See also

    See [zio.ZIO.interruptAllChildren]

  75. def interruptAs(fiberId: => Id): UIO[Nothing]

  76. def interruptible[A](uio: UIO[A]): UIO[A]

  77. def interruptibleMask[A](k: (InterruptStatusRestore) => UIO[A]): UIO[A]

  78. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  79. def iterate[S](initial: S)(cont: (S) => Boolean)(body: (S) => UIO[S]): UIO[S]

    See also

    See zio.ZIO.iterate

  80. def left[A](a: => A): UIO[Either[A, Nothing]]

    See also

    See zio.ZIO.left

  81. def lock[A](executor: => Executor)(uio: UIO[A]): UIO[A]

    See also

    See zio.ZIO.lock

  82. def loop[A, S](initial: S)(cont: (S) => Boolean, inc: (S) => S)(body: (S) => UIO[A]): UIO[List[A]]

    See also

    See zio.ZIO.loop

  83. def loop_[S](initial: S)(cont: (S) => Boolean, inc: (S) => S)(body: (S) => UIO[Any]): UIO[Unit]

    See also

    See zio.ZIO.loop_

  84. def mapN[A, B, C, D, F](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C], uio4: UIO[D])(f: (A, B, C, D) => F): UIO[F]

  85. def mapN[A, B, C, D](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C])(f: (A, B, C) => D): UIO[D]

  86. def mapN[A, B, C](uio1: UIO[A], uio2: UIO[B])(f: (A, B) => C): UIO[C]

  87. def mapParN[A, B, C, D, F](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C], uio4: UIO[D])(f: (A, B, C, D) => F): UIO[F]

  88. def mapParN[A, B, C, D](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C])(f: (A, B, C) => D): UIO[D]

  89. def mapParN[A, B, C](uio1: UIO[A], uio2: UIO[B])(f: (A, B) => C): UIO[C]

  90. def mergeAll[A, B](in: Iterable[UIO[A]])(zero: B)(f: (B, A) => B): UIO[B]

    See also

    See zio.ZIO.mergeAll

  91. def mergeAllPar[A, B](in: Iterable[UIO[A]])(zero: B)(f: (B, A) => B): UIO[B]

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

    See also

    See zio.ZIO.never

  94. val none: UIO[Option[Nothing]]

    See also

    See zio.ZIO.none

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

    See also

    See zio.ZIO.raceAll

  98. def reduceAll[A](a: UIO[A], as: Iterable[UIO[A]])(f: (A, A) => A): UIO[A]

    See also

    See zio.ZIO.reduceAll

  99. def reduceAllPar[A](a: UIO[A], as: Iterable[UIO[A]])(f: (A, A) => A): UIO[A]

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

    See also

    See zio.ZIO.replicate

  101. def reserve[A, B](reservation: UIO[Reservation[Any, Nothing, A]])(use: (A) => UIO[B]): UIO[B]

    See also

    See zio.ZIO.reserve

  102. def right[B](b: => B): UIO[Either[Nothing, B]]

  103. def runtime: UIO[Runtime[Any]]

    See also

    See zio.ZIO.runtime

  104. def some[A](a: => A): UIO[Option[A]]

    See also

    zio.ZIO.some

  105. def succeed[A](a: => A): UIO[A]

    See also

    See zio.ZIO.succeed

  106. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  107. def toString(): String
    Definition Classes
    AnyRef → Any
  108. def trace: UIO[ZTrace]

    See also

    See zio.ZIO.trace

  109. def traced[A](uio: UIO[A]): UIO[A]

    See also

    See zio.ZIO.traced

  110. def uninterruptible[A](uio: UIO[A]): UIO[A]

  111. def uninterruptibleMask[A](k: (InterruptStatusRestore) => UIO[A]): UIO[A]

  112. val unit: UIO[Unit]

    See also

    See zio.ZIO.unit

  113. def unsandbox[A](v: IO[Cause[Nothing], A]): UIO[A]

  114. def untraced[A](uio: UIO[A]): UIO[A]

    See also

    See zio.ZIO.untraced

  115. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  116. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  117. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  118. def when(b: => Boolean)(uio: => UIO[Any]): UIO[Unit]

    See also

    See zio.ZIO.when

  119. def whenCase[R, E, A](a: => A)(pf: PartialFunction[A, ZIO[R, E, Any]]): ZIO[R, E, Unit]

    See also

    See zio.ZIO.whenCase

  120. def whenCaseM[R, E, A](a: ZIO[R, E, A])(pf: PartialFunction[A, ZIO[R, E, Any]]): ZIO[R, E, Unit]

    See also

    See zio.ZIO.whenCaseM

  121. def whenM(b: UIO[Boolean])(uio: => UIO[Any]): UIO[Unit]

    See also

    See zio.ZIO.whenM

  122. val yieldNow: UIO[Unit]

    See also

    See zio.ZIO.yieldNow

Inherited from AnyRef

Inherited from Any

Ungrouped