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

    See also

    See zio.ZIO.absolve

  5. def acquireReleaseExitWith[A, B](acquire: ⇒ UIO[A], release: (A, Exit[Nothing, B]) ⇒ UIO[Any], use: (A) ⇒ UIO[B])(implicit trace: ZTraceElement): UIO[B]

    See also

    See acquireReleaseExitWith zio.ZIO

  6. def acquireReleaseExitWith[A](acquire: ⇒ UIO[A]): AcquireExit[Any, Nothing, A]

    See also

    See acquireReleaseExitWith zio.ZIO

  7. def acquireReleaseWith[A, B](acquire: ⇒ UIO[A], release: (A) ⇒ UIO[Any], use: (A) ⇒ UIO[B])(implicit trace: ZTraceElement): UIO[B]

    See also

    See acquireReleaseWith zio.ZIO

  8. def acquireReleaseWith[A](acquire: ⇒ UIO[A]): Acquire[Any, Nothing, A]

    See also

    See acquireReleaseWith zio.ZIO

  9. def allowInterrupt(implicit trace: ZTraceElement): UIO[Unit]

  10. def apply[A](a: ⇒ A)(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.apply

  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def async[A](register: ((UIO[A]) ⇒ Unit) ⇒ Any, blockingOn: ⇒ FiberId = FiberId.None)(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.async

  13. def asyncInterrupt[A](register: ((UIO[A]) ⇒ Unit) ⇒ Either[Canceler[Any], UIO[A]], blockingOn: ⇒ FiberId = FiberId.None)(implicit trace: ZTraceElement): UIO[A]

  14. def asyncMaybe[A](register: ((UIO[A]) ⇒ Unit) ⇒ Option[UIO[A]], blockingOn: ⇒ FiberId = FiberId.None)(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.asyncMaybe

  15. def asyncZIO[A](register: ((UIO[A]) ⇒ Unit) ⇒ UIO[Any])(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.asyncZIO

  16. def blocking[A](zio: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.blocking

  17. def blockingExecutor(implicit trace: ZTraceElement): UIO[Executor]

  18. def checkInterruptible[A](f: (InterruptStatus) ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

  19. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  20. def collect[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) ⇒ IO[Option[Nothing], (Key2, Value2)])(implicit trace: ZTraceElement): UIO[Map[Key2, Value2]]

  21. def collect[A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ IO[Option[Nothing], B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], trace: ZTraceElement): UIO[Collection[B]]

  22. def collectAll[A](in: NonEmptyChunk[UIO[A]])(implicit trace: ZTraceElement): UIO[NonEmptyChunk[A]]

  23. def collectAll[A](in: Option[UIO[A]])(implicit trace: ZTraceElement): UIO[Option[A]]

  24. def collectAll[A](in: Array[UIO[A]])(implicit arg0: ClassTag[A], trace: ZTraceElement): UIO[Array[A]]

  25. def collectAll[A](in: Set[UIO[A]])(implicit trace: ZTraceElement): UIO[Set[A]]

  26. def collectAll[A, Collection[+Element] <: Iterable[Element]](in: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]], trace: ZTraceElement): UIO[Collection[A]]

  27. def collectAllDiscard[A](in: ⇒ Iterable[UIO[A]])(implicit trace: ZTraceElement): UIO[Unit]

  28. def collectAllPar[A](as: NonEmptyChunk[UIO[A]])(implicit trace: ZTraceElement): UIO[NonEmptyChunk[A]]

  29. def collectAllPar[A](as: Array[UIO[A]])(implicit arg0: ClassTag[A], trace: ZTraceElement): UIO[Array[A]]

  30. def collectAllPar[A](as: Set[UIO[A]])(implicit trace: ZTraceElement): UIO[Set[A]]

  31. def collectAllPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]], trace: ZTraceElement): UIO[Collection[A]]

  32. def collectAllParDiscard[A](in: ⇒ Iterable[UIO[A]])(implicit trace: ZTraceElement): UIO[Unit]

  33. def collectAllSuccesses[A, Collection[+Element] <: Iterable[Element]](in: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]], trace: ZTraceElement): UIO[Collection[A]]

  34. def collectAllSuccessesPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]], trace: ZTraceElement): UIO[Collection[A]]

  35. def collectAllWith[A, B, Collection[+Element] <: Iterable[Element]](in: Collection[UIO[A]])(f: PartialFunction[A, B])(implicit bf: zio.BuildFrom[Collection[UIO[A]], B, Collection[B]], trace: ZTraceElement): UIO[Collection[B]]

  36. def collectAllWithPar[A, B, Collection[+Element] <: Iterable[Element]](as: Collection[UIO[A]])(f: PartialFunction[A, B])(implicit bf: zio.BuildFrom[Collection[UIO[A]], B, Collection[B]], trace: ZTraceElement): UIO[Collection[B]]

  37. def collectFirst[A, B](as: ⇒ Iterable[A])(f: (A) ⇒ UIO[Option[B]])(implicit trace: ZTraceElement): UIO[Option[B]]

    See also

    See zio.ZIO.collectFirst

  38. def collectPar[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) ⇒ IO[Option[Nothing], (Key2, Value2)])(implicit trace: ZTraceElement): UIO[Map[Key2, Value2]]

  39. def collectPar[A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ IO[Option[Nothing], B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], trace: ZTraceElement): UIO[Collection[B]]

  40. def debug(value: ⇒ Any)(implicit trace: ZTraceElement): UIO[Unit]

    See also

    See zio.ZIO.debug

  41. def descriptor(implicit trace: ZTraceElement): UIO[Descriptor]

    See also

    See zio.ZIO.descriptor

  42. def descriptorWith[A](f: (Descriptor) ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

  43. def die(t: ⇒ Throwable)(implicit trace: ZTraceElement): UIO[Nothing]

    See also

    See zio.ZIO.die

  44. def dieMessage(message: ⇒ String)(implicit trace: ZTraceElement): UIO[Nothing]

    See also

    See zio.ZIO.dieMessage

  45. def done[A](r: ⇒ Exit[Nothing, A])(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.done

  46. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  47. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  48. def executor(implicit trace: ZTraceElement): UIO[Executor]

    See also

    See zio.ZIO.executor

  49. def exists[A](as: ⇒ Iterable[A])(f: (A) ⇒ UIO[Boolean])(implicit trace: ZTraceElement): UIO[Boolean]

    See also

    See zio.ZIO.exists

  50. def failCause(cause: ⇒ Cause[Nothing])(implicit trace: ZTraceElement): UIO[Nothing]

    See also

    See zio.ZIO.failCause

  51. def fiberId(implicit trace: ZTraceElement): UIO[FiberId]

    See also

    zio.ZIO.fiberId

  52. def filter[A](as: Set[A])(f: (A) ⇒ UIO[Boolean])(implicit trace: ZTraceElement): UIO[Set[A]]

  53. def filter[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) ⇒ UIO[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]], trace: ZTraceElement): UIO[Collection[A]]

  54. def filterNot[A](as: Set[A])(f: (A) ⇒ UIO[Boolean])(implicit trace: ZTraceElement): UIO[Set[A]]

  55. def filterNot[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) ⇒ UIO[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]], trace: ZTraceElement): UIO[Collection[A]]

  56. def filterNotPar[A](as: Set[A])(f: (A) ⇒ UIO[Boolean])(implicit trace: ZTraceElement): UIO[Set[A]]

  57. def filterNotPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) ⇒ UIO[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]], trace: ZTraceElement): UIO[Collection[A]]

  58. def filterPar[A](as: Set[A])(f: (A) ⇒ UIO[Boolean])(implicit trace: ZTraceElement): UIO[Set[A]]

  59. def filterPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) ⇒ UIO[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]], trace: ZTraceElement): UIO[Collection[A]]

  60. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  61. def firstSuccessOf[A](uio: ⇒ UIO[A], rest: ⇒ Iterable[UIO[A]])(implicit trace: ZTraceElement): UIO[A]

  62. def flatten[A](uio: ⇒ UIO[UIO[A]])(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.flatten

  63. def foldLeft[S, A](in: ⇒ Iterable[A])(zero: ⇒ S)(f: (S, A) ⇒ UIO[S])(implicit trace: ZTraceElement): UIO[S]

    See also

    See zio.ZIO.foldLeft

  64. def foldRight[S, A](in: ⇒ Iterable[A])(zero: ⇒ S)(f: (A, S) ⇒ UIO[S])(implicit trace: ZTraceElement): UIO[S]

    See also

    See zio.ZIO.foldRight

  65. def forall[A](as: ⇒ Iterable[A])(f: (A) ⇒ UIO[Boolean])(implicit trace: ZTraceElement): UIO[Boolean]

    See also

    See zio.ZIO.forall

  66. def foreach[A, B](in: NonEmptyChunk[A])(f: (A) ⇒ UIO[B])(implicit trace: ZTraceElement): UIO[NonEmptyChunk[B]]

  67. def foreach[A, B](in: Option[A])(f: (A) ⇒ UIO[B])(implicit trace: ZTraceElement): UIO[Option[B]]

  68. def foreach[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) ⇒ UIO[(Key2, Value2)])(implicit trace: ZTraceElement): UIO[Map[Key2, Value2]]

  69. def foreach[A, B](in: Array[A])(f: (A) ⇒ UIO[B])(implicit arg0: ClassTag[B], trace: ZTraceElement): UIO[Array[B]]

  70. def foreach[A, B](in: Set[A])(f: (A) ⇒ UIO[B])(implicit trace: ZTraceElement): UIO[Set[B]]

  71. def foreach[A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ UIO[B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], trace: ZTraceElement): UIO[Collection[B]]

  72. def foreachDiscard[A](as: ⇒ Iterable[A])(f: (A) ⇒ UIO[Any])(implicit trace: ZTraceElement): UIO[Unit]

  73. final def foreachExec[A, B, Collection[+Element] <: Iterable[Element]](as: Collection[A])(exec: ⇒ ExecutionStrategy)(f: (A) ⇒ UIO[B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], trace: ZTraceElement): UIO[Collection[B]]

    See also

    See zio.ZIO.foreachExec

  74. def foreachPar[A, B](as: NonEmptyChunk[A])(fn: (A) ⇒ UIO[B])(implicit trace: ZTraceElement): UIO[NonEmptyChunk[B]]

  75. def foreachPar[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) ⇒ UIO[(Key2, Value2)])(implicit trace: ZTraceElement): UIO[Map[Key2, Value2]]

  76. def foreachPar[A, B](as: Array[A])(fn: (A) ⇒ UIO[B])(implicit arg0: ClassTag[B], trace: ZTraceElement): UIO[Array[B]]

  77. def foreachPar[A, B](as: Set[A])(fn: (A) ⇒ UIO[B])(implicit trace: ZTraceElement): UIO[Set[B]]

  78. def foreachPar[A, B, Collection[+Element] <: Iterable[Element]](as: Collection[A])(fn: (A) ⇒ UIO[B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], trace: ZTraceElement): UIO[Collection[B]]

  79. def foreachParDiscard[A](as: ⇒ Iterable[A])(f: (A) ⇒ UIO[Any])(implicit trace: ZTraceElement): UIO[Unit]

  80. def forkAll[A, Collection[+Element] <: Iterable[Element]](as: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]], trace: ZTraceElement): UIO[Fiber[Nothing, Collection[A]]]

    See also

    See zio.ZIO.forkAll

  81. def forkAllDiscard[A](as: ⇒ Iterable[UIO[A]])(implicit trace: ZTraceElement): UIO[Unit]

  82. def from[Input](input: ⇒ Input)(implicit constructor: ZIOConstructor[Any, Nothing, Input], trace: ZTraceElement): ZIO[OutEnvironment, OutError, OutSuccess]

    Constructs a UIO value of the appropriate type for the specified input.

  83. def fromEither[A](v: ⇒ Either[Nothing, A])(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.fromEither

  84. def fromFiber[A](fiber: ⇒ Fiber[Nothing, A])(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.fromFiber

  85. def fromFiberZIO[A](fiber: ⇒ UIO[Fiber[Nothing, A]])(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.fromFiberZIO

  86. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  87. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  88. def ifZIO(b: ⇒ UIO[Boolean]): IfZIO[Any, Nothing]

    See also

    zio.ZIO.ifZIO

  89. def interrupt(implicit trace: ZTraceElement): UIO[Nothing]

    See also

    See zio.ZIO.interrupt

  90. def interruptAs(fiberId: ⇒ FiberId)(implicit trace: ZTraceElement): UIO[Nothing]

    See also

    See zio.ZIO.interruptAs

  91. def interruptible[A](uio: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.interruptible

  92. def interruptibleMask[A](k: (InterruptStatusRestore) ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

  93. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  94. def iterate[S](initial: ⇒ S)(cont: (S) ⇒ Boolean)(body: (S) ⇒ UIO[S])(implicit trace: ZTraceElement): UIO[S]

    See also

    See zio.ZIO.iterate

  95. def left[A](a: ⇒ A)(implicit trace: ZTraceElement): UIO[Either[A, Nothing]]

    See also

    See zio.ZIO.left

  96. def loop[A, S](initial: ⇒ S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[List[A]]

    See also

    See zio.ZIO.loop

  97. def loopDiscard[S](initial: ⇒ S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ UIO[Any])(implicit trace: ZTraceElement): UIO[Unit]

    See also

    See zio.ZIO.loopDiscard

  98. def memoize[A, B](f: (A) ⇒ UIO[B])(implicit trace: ZTraceElement): UIO[(A) ⇒ UIO[B]]

    See also

    See zio.ZIO.memoize

  99. def mergeAll[A, B](in: ⇒ Iterable[UIO[A]])(zero: ⇒ B)(f: (B, A) ⇒ B)(implicit trace: ZTraceElement): UIO[B]

    See also

    See zio.ZIO.mergeAll

  100. def mergeAllPar[A, B](in: ⇒ Iterable[UIO[A]])(zero: ⇒ B)(f: (B, A) ⇒ B)(implicit trace: ZTraceElement): UIO[B]

    See also

    See zio.ZIO.mergeAllPar

  101. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  102. def never(implicit trace: ZTraceElement): UIO[Nothing]

    See also

    See zio.ZIO.never

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

    See also

    See zio.ZIO.none

  104. def not(effect: ⇒ UIO[Boolean])(implicit trace: ZTraceElement): UIO[Boolean]

    See also

    See zio.ZIO.not

  105. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  106. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  107. def onExecutor[A](executor: ⇒ Executor)(uio: UIO[A])(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.onExecutor

  108. def raceAll[A](uio: ⇒ UIO[A], uios: ⇒ Iterable[UIO[A]])(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.raceAll

  109. def reduceAll[A](a: ⇒ UIO[A], as: ⇒ Iterable[UIO[A]])(f: (A, A) ⇒ A)(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.reduceAll

  110. def reduceAllPar[A](a: ⇒ UIO[A], as: ⇒ Iterable[UIO[A]])(f: (A, A) ⇒ A)(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.reduceAllPar

  111. def replicate[A](n: ⇒ Int)(effect: ⇒ UIO[A])(implicit trace: ZTraceElement): Iterable[UIO[A]]

    See also

    See zio.ZIO.replicate

  112. def replicateZIO[A](n: ⇒ Int)(effect: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[Iterable[A]]

    See also

    See zio.ZIO.replicateZIO

  113. def replicateZIODiscard[A](n: ⇒ Int)(effect: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[Unit]

  114. def reserve[A, B](reservation: ⇒ UIO[Reservation[Any, Nothing, A]])(use: (A) ⇒ UIO[B])(implicit trace: ZTraceElement): UIO[B]

    See also

    See zio.ZIO.reserve

  115. def right[B](b: ⇒ B)(implicit trace: ZTraceElement): UIO[Either[Nothing, B]]

    See also

    zio.ZIO.right

  116. def runtime(implicit trace: ZTraceElement): UIO[Runtime[Any]]

    See also

    See zio.ZIO.runtime

  117. def runtimeConfig(implicit trace: ZTraceElement): UIO[RuntimeConfig]

    See also

    See zio.ZIO.runtimeConfig

  118. def some[A](a: ⇒ A)(implicit trace: ZTraceElement): UIO[Option[A]]

    See also

    zio.ZIO.some

  119. def succeed[A](a: ⇒ A)(implicit trace: ZTraceElement): UIO[A]

    See also

    See zio.ZIO.succeed

  120. def succeedBlocking[A](a: ⇒ A)(implicit trace: ZTraceElement): UIO[A]

  121. def suspendSucceed[A](uio: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

  122. def suspendSucceedWith[A](f: (RuntimeConfig, FiberId) ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

  123. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  124. def toString(): String
    Definition Classes
    AnyRef → Any
  125. def trace(implicit trace: ZTraceElement): UIO[ZTrace]

    See also

    See zio.ZIO.trace

  126. def uninterruptible[A](uio: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

  127. def uninterruptibleMask[A](k: (InterruptStatusRestore) ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

  128. val unit: UIO[Unit]

    See also

    See zio.ZIO.unit

  129. def unless[A](b: ⇒ Boolean)(zio: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[Option[A]]

    See also

    See zio.ZIO.unless

  130. def unlessZIO(b: ⇒ UIO[Boolean]): UnlessZIO[Any, Nothing]

    See also

    See zio.ZIO.unlessZIO

  131. def unsandbox[A](v: ⇒ IO[Cause[Nothing], A])(implicit trace: ZTraceElement): UIO[A]

  132. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  133. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  134. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  135. def when[A](b: ⇒ Boolean)(uio: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[Option[A]]

    See also

    See zio.ZIO.when

  136. def whenCase[A, B](a: ⇒ A)(pf: PartialFunction[A, UIO[B]])(implicit trace: ZTraceElement): UIO[Option[B]]

    See also

    See zio.ZIO.whenCase

  137. def whenCaseZIO[A, B](a: ⇒ UIO[A])(pf: PartialFunction[A, UIO[B]])(implicit trace: ZTraceElement): UIO[Option[B]]

    See also

    See zio.ZIO.whenCaseZIO

  138. def whenZIO(b: ⇒ UIO[Boolean]): WhenZIO[Any, Nothing]

    See also

    See zio.ZIO.whenZIO

  139. def withRuntimeConfig[A](runtimeConfig: ⇒ RuntimeConfig)(uio: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

  140. def yieldNow(implicit trace: ZTraceElement): UIO[Unit]

    See also

    See zio.ZIO.yieldNow

Deprecated Value Members

  1. def bracket[A, B](acquire: ⇒ UIO[A], release: (A) ⇒ UIO[Any], use: (A) ⇒ UIO[B])(implicit trace: ZTraceElement): UIO[B]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use acquireReleaseWith

    See also

    See bracket zio.ZIO

  2. def bracket[A](acquire: ⇒ UIO[A]): Acquire[Any, Nothing, A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use acquireReleaseWith

    See also

    See bracket zio.ZIO

  3. def bracketExit[A, B](acquire: ⇒ UIO[A], release: (A, Exit[Nothing, B]) ⇒ UIO[Any], use: (A) ⇒ UIO[B])(implicit trace: ZTraceElement): UIO[B]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use acquireReleaseExitWith

    See also

    See bracketExit zio.ZIO

  4. def bracketExit[A](acquire: ⇒ UIO[A]): AcquireExit[Any, Nothing, A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use acquireReleaseExitWith

    See also

    See bracketExit zio.ZIO

  5. def collectAllParN[A, Collection[+Element] <: Iterable[Element]](n: ⇒ Int)(as: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]], trace: ZTraceElement): UIO[Collection[A]]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectAllPar

    See also

    See zio.ZIO.collectAllParN

  6. def collectAllParNDiscard[A](n: ⇒ Int)(as: ⇒ Iterable[UIO[A]])(implicit trace: ZTraceElement): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectAllParDiscard

    See also

    See zio.ZIO.collectAllParNDiscard

  7. def collectAllParN_[A](n: ⇒ Int)(as: ⇒ Iterable[UIO[A]])(implicit trace: ZTraceElement): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectAllDiscard

    See also

    See zio.ZIO.collectAllParN_

  8. def collectAllPar_[A](in: ⇒ Iterable[UIO[A]])(implicit trace: ZTraceElement): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectAllParDiscard

    See also

    See zio.ZIO.collectAllPar_

  9. def collectAllSuccessesParN[A, Collection[+Element] <: Iterable[Element]](n: ⇒ Int)(as: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]], trace: ZTraceElement): UIO[Collection[A]]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectAllSuccessesPar

    See also

    See zio.ZIO.collectAllSuccessesParN

  10. def collectAllWithParN[A, B, Collection[+Element] <: Iterable[Element]](n: ⇒ Int)(as: Collection[UIO[A]])(f: PartialFunction[A, B])(implicit bf: zio.BuildFrom[Collection[UIO[A]], B, Collection[B]], trace: ZTraceElement): UIO[Collection[B]]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectAllWithPar

    See also

    See zio.ZIO.collectAllWithParN

  11. def collectAll_[A](in: ⇒ Iterable[UIO[A]])(implicit trace: ZTraceElement): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectAllDiscard

    See also

    See zio.ZIO.collectAll_

  12. def collectParN[A, B, Collection[+Element] <: Iterable[Element]](n: ⇒ Int)(in: Collection[A])(f: (A) ⇒ IO[Option[Nothing], B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], trace: ZTraceElement): UIO[Collection[B]]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectAllPar

    See also

    See zio.ZIO.collectParN

  13. def effectAsync[A](register: ((UIO[A]) ⇒ Unit) ⇒ Any, blockingOn: ⇒ FiberId = FiberId.None)(implicit trace: ZTraceElement): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use async

    See also

    See zio.ZIO.effectAsync

  14. def effectAsyncInterrupt[A](register: ((UIO[A]) ⇒ Unit) ⇒ Either[Canceler[Any], UIO[A]], blockingOn: ⇒ FiberId = FiberId.None)(implicit trace: ZTraceElement): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use asyncInterrupt

    See also

    See zio.ZIO.effectAsyncInterrupt

  15. def effectAsyncM[A](register: ((UIO[A]) ⇒ Unit) ⇒ UIO[Any])(implicit trace: ZTraceElement): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use asyncZIO

    See also

    See zio.ZIO.effectAsyncM

  16. def effectAsyncMaybe[A](register: ((UIO[A]) ⇒ Unit) ⇒ Option[UIO[A]], blockingOn: ⇒ FiberId = FiberId.None)(implicit trace: ZTraceElement): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use asyncMaybe

    See also

    See zio.ZIO.effectAsyncMaybe

  17. def effectSuspendTotal[A](uio: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use suspendSucceed

    See also

    See zio.ZIO.effectSuspendTotal

  18. def effectSuspendTotalWith[A](p: (Platform, Id) ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use suspendSucceedWith

    See also

    See zio.ZIO.effectSuspendTotalWith

  19. def effectTotal[A](effect: ⇒ A)(implicit trace: ZTraceElement): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use succeed

    See also

    See zio.ZIO.effectTotal

  20. def foreachParN[A, B, Collection[+Element] <: Iterable[Element]](n: ⇒ Int)(as: Collection[A])(fn: (A) ⇒ UIO[B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], trace: ZTraceElement): UIO[Collection[B]]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foreachPar

    See also

    See zio.ZIO.foreachParN

  21. def foreachParNDiscard[A](n: ⇒ Int)(as: ⇒ Iterable[A])(f: (A) ⇒ UIO[Any])(implicit trace: ZTraceElement): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foreachParDiscard

    See also

    See zio.ZIO.foreachParNDiscard

  22. def foreachParN_[A](n: ⇒ Int)(as: ⇒ Iterable[A])(f: (A) ⇒ UIO[Any])(implicit trace: ZTraceElement): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foreachParDiscard

    See also

    See zio.ZIO.foreachParN_

  23. def foreachPar_[A](as: ⇒ Iterable[A])(f: (A) ⇒ UIO[Any])(implicit trace: ZTraceElement): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foreachParDiscard

    See also

    See zio.ZIO.foreachPar_

  24. def foreach_[A](as: ⇒ Iterable[A])(f: (A) ⇒ UIO[Any])(implicit trace: ZTraceElement): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foreachDiscard

    See also

    See zio.ZIO.foreach_

  25. def forkAll_[A](as: ⇒ Iterable[UIO[A]])(implicit trace: ZTraceElement): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use forkAllDiscard

    See also

    See zio.ZIO.forkAll_

  26. def fromFiberM[A](fiber: ⇒ UIO[Fiber[Nothing, A]])(implicit trace: ZTraceElement): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use fromFiberZIO

    See also

    See zio.ZIO.fromFiberM

  27. def halt(cause: ⇒ Cause[Nothing])(implicit trace: ZTraceElement): UIO[Nothing]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use failCause

    See also

    See zio.ZIO.halt

  28. def ifM(b: ⇒ UIO[Boolean]): IfZIO[Any, Nothing]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use ifZIO

    See also

    zio.ZIO.ifM

  29. def lock[A](executor: ⇒ Executor)(uio: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use onExecutor

    See also

    See zio.ZIO.lock

  30. def loop_[S](initial: ⇒ S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ UIO[Any])(implicit trace: ZTraceElement): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use loopDiscard

    See also

    See zio.ZIO.loop_

  31. 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)(implicit trace: ZTraceElement): UIO[F]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zip

    See also

    zio.ZIO.mapN[R,E,A,B,C,D,F]*

  32. def mapN[A, B, C, D](uio1: ⇒ UIO[A], uio2: ⇒ UIO[B], uio3: ⇒ UIO[C])(f: (A, B, C) ⇒ D)(implicit trace: ZTraceElement): UIO[D]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zip

    See also

    zio.ZIO.mapN[R,E,A,B,C,D]*

  33. def mapN[A, B, C](uio1: ⇒ UIO[A], uio2: ⇒ UIO[B])(f: (A, B) ⇒ C)(implicit trace: ZTraceElement): UIO[C]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zip

    See also

    zio.ZIO.mapN[R,E,A,B,C]*

  34. 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)(implicit trace: ZTraceElement): UIO[F]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zipPar

    See also

    zio.ZIO.mapParN[R,E,A,B,C,D,F]*

  35. def mapParN[A, B, C, D](uio1: ⇒ UIO[A], uio2: ⇒ UIO[B], uio3: ⇒ UIO[C])(f: (A, B, C) ⇒ D)(implicit trace: ZTraceElement): UIO[D]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zipPar

    See also

    zio.ZIO.mapParN[R,E,A,B,C,D]*

  36. def mapParN[A, B, C](uio1: ⇒ UIO[A], uio2: ⇒ UIO[B])(f: (A, B) ⇒ C)(implicit trace: ZTraceElement): UIO[C]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zipPar

    See also

    zio.ZIO.mapParN[R,E,A,B,C]*

  37. def replicateM[A](n: ⇒ Int)(effect: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[Iterable[A]]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use replicateZIO

    See also

    See zio.ZIO.replicateM

  38. def replicateM_[A](n: ⇒ Int)(effect: ⇒ UIO[A])(implicit trace: ZTraceElement): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use replicateZIODiscard

    See also

    See zio.ZIO.replicateM_

  39. def unlessM(b: ⇒ UIO[Boolean]): UnlessZIO[Any, Nothing]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use unlessZIO

    See also

    See zio.ZIO.unlessM

  40. def whenCaseM[A, B](a: ⇒ UIO[A])(pf: PartialFunction[A, UIO[B]])(implicit trace: ZTraceElement): UIO[Option[B]]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use whenCaseZIO

    See also

    See zio.ZIO.whenCaseM

  41. def whenM(b: ⇒ UIO[Boolean]): WhenZIO[Any, Nothing]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use whenZIO

    See also

    See zio.ZIO.whenM

Inherited from AnyRef

Inherited from Any

Ungrouped