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 acquireReleaseExitWith[A, B](acquire: => UIO[A], release: (A, Exit[Nothing, B]) => UIO[Any], use: (A) => UIO[B]): UIO[B]

    See also

    See acquireReleaseExitWith zio.ZIO

  6. def acquireReleaseExitWith[A](acquire: => UIO[A]): BracketExitAcquire[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]): UIO[B]

    See also

    See acquireReleaseWith zio.ZIO

  8. def acquireReleaseWith[A](acquire: => UIO[A]): BracketAcquire[Any, Nothing, A]

    See also

    See acquireReleaseWith zio.ZIO

  9. def allowInterrupt: UIO[Unit]

  10. def apply[A](a: => A): 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): 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): UIO[A]

  14. def asyncMaybe[A](register: ((UIO[A]) => Unit) => Option[UIO[A]], blockingOn: => FiberId = FiberId.None): UIO[A]

    See also

    See zio.ZIO.asyncMaybe

  15. def asyncZIO[A](register: ((UIO[A]) => Unit) => UIO[Any]): UIO[A]

    See also

    See zio.ZIO.asyncZIO

  16. def blocking[A](zio: => UIO[A]): UIO[A]

    See also

    See zio.ZIO.blocking

  17. def blockingExecutor: UIO[Executor]

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

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

  20. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  21. def collect[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => IO[Option[Nothing], (Key2, Value2)]): UIO[Map[Key2, Value2]]

  22. 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]]): UIO[Collection[B]]

  23. def collectAll[A](in: NonEmptyChunk[UIO[A]]): UIO[NonEmptyChunk[A]]

  24. def collectAll[A](in: Option[UIO[A]]): UIO[Option[A]]

  25. def collectAll[A](in: Array[UIO[A]])(implicit arg0: ClassTag[A]): UIO[Array[A]]

  26. def collectAll[A](in: Set[UIO[A]]): UIO[Set[A]]

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

  28. def collectAllDiscard[A](in: => Iterable[UIO[A]]): UIO[Unit]

  29. def collectAllPar[A](as: NonEmptyChunk[UIO[A]]): UIO[NonEmptyChunk[A]]

  30. def collectAllPar[A](as: Array[UIO[A]])(implicit arg0: ClassTag[A]): UIO[Array[A]]

  31. def collectAllPar[A](as: Set[UIO[A]]): UIO[Set[A]]

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

  33. def collectAllParDiscard[A](in: => Iterable[UIO[A]]): UIO[Unit]

  34. def collectAllParN[A, Collection[+Element] <: Iterable[Element]](n: => Int)(as: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]

  35. def collectAllParNDiscard[A](n: => Int)(as: => Iterable[UIO[A]]): UIO[Unit]

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

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

  38. def collectAllSuccessesParN[A, Collection[+Element] <: Iterable[Element]](n: => Int)(as: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]

  39. 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]]): UIO[Collection[B]]

  40. 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]]): UIO[Collection[B]]

  41. 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]]): UIO[Collection[B]]

  42. def collectFirst[A, B](as: => Iterable[A])(f: (A) => UIO[Option[B]]): UIO[Option[B]]

  43. def collectPar[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => IO[Option[Nothing], (Key2, Value2)]): UIO[Map[Key2, Value2]]

  44. 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]]): UIO[Collection[B]]

  45. 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]]): UIO[Collection[B]]

  46. def debug(value: => Any): UIO[Unit]

    See also

    See zio.ZIO.debug

  47. def descriptor: UIO[Descriptor]

    See also

    See zio.ZIO.descriptor

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

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

    See also

    See zio.ZIO.die

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

    See also

    See zio.ZIO.dieMessage

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

    See also

    See zio.ZIO.done

  52. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  53. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  54. def executor: UIO[Executor]

    See also

    See zio.ZIO.executor

  55. def exists[A](as: => Iterable[A])(f: (A) => UIO[Boolean]): UIO[Boolean]

    See also

    See zio.ZIO.exists

  56. def failCause(cause: => Cause[Nothing]): UIO[Nothing]

    See also

    See zio.ZIO.failCause

  57. def failCauseWith(function: (() => ZTrace) => Cause[Nothing]): UIO[Nothing]

  58. val fiberId: UIO[FiberId]

  59. def filter[A](as: Set[A])(f: (A) => UIO[Boolean]): UIO[Set[A]]

  60. def filter[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) => UIO[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): UIO[Collection[A]]

  61. def filterNot[A](as: Set[A])(f: (A) => UIO[Boolean]): UIO[Set[A]]

  62. def filterNot[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) => UIO[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): UIO[Collection[A]]

  63. def filterNotPar[A](as: Set[A])(f: (A) => UIO[Boolean]): UIO[Set[A]]

  64. def filterNotPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) => UIO[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): UIO[Collection[A]]

  65. def filterPar[A](as: Set[A])(f: (A) => UIO[Boolean]): UIO[Set[A]]

  66. def filterPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) => UIO[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): UIO[Collection[A]]

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

  69. def flatten[A](uio: => UIO[UIO[A]]): UIO[A]

    See also

    See zio.ZIO.flatten

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

    See also

    See zio.ZIO.foldLeft

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

    See also

    See zio.ZIO.foldRight

  72. def forall[A](as: => Iterable[A])(f: (A) => UIO[Boolean]): UIO[Boolean]

    See also

    See zio.ZIO.forall

  73. def foreach[A, B](in: NonEmptyChunk[A])(f: (A) => UIO[B]): UIO[NonEmptyChunk[B]]

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

  75. def foreach[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => UIO[(Key2, Value2)]): UIO[Map[Key2, Value2]]

  76. def foreach[A, B](in: Array[A])(f: (A) => UIO[B])(implicit arg0: ClassTag[B]): UIO[Array[B]]

  77. def foreach[A, B](in: Set[A])(f: (A) => UIO[B]): UIO[Set[B]]

  78. def foreach[A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) => UIO[B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): UIO[Collection[B]]

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

  80. 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]]): UIO[Collection[B]]

  81. def foreachPar[A, B](as: NonEmptyChunk[A])(fn: (A) => UIO[B]): UIO[NonEmptyChunk[B]]

  82. def foreachPar[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => UIO[(Key2, Value2)]): UIO[Map[Key2, Value2]]

  83. def foreachPar[A, B](as: Array[A])(fn: (A) => UIO[B])(implicit arg0: ClassTag[B]): UIO[Array[B]]

  84. def foreachPar[A, B](as: Set[A])(fn: (A) => UIO[B]): UIO[Set[B]]

  85. def foreachPar[A, B, Collection[+Element] <: Iterable[Element]](as: Collection[A])(fn: (A) => UIO[B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): UIO[Collection[B]]

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

  87. 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]]): UIO[Collection[B]]

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

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

    See also

    See zio.ZIO.forkAll

  90. def forkAllDiscard[A](as: => Iterable[UIO[A]]): UIO[Unit]

  91. def from[Input](input: => Input)(implicit constructor: ZIOConstructor[Any, Nothing, Input]): ZIO[OutEnvironment, OutError, OutSuccess]

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

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

    See also

    See zio.ZIO.fromEither

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

    See also

    See zio.ZIO.fromFiber

  94. def fromFiberZIO[A](fiber: => UIO[Fiber[Nothing, A]]): UIO[A]

  95. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  96. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  97. def ifZIO(b: => UIO[Boolean]): IfZIO[Any, Nothing]

  98. val interrupt: UIO[Nothing]

    See also

    See zio.ZIO.interrupt

  99. def interruptAs(fiberId: => FiberId): UIO[Nothing]

  100. def interruptible[A](uio: => UIO[A]): UIO[A]

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

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

    See also

    See zio.ZIO.iterate

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

    See also

    See zio.ZIO.left

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

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

  107. def memoize[A, B](f: (A) => UIO[B]): UIO[(A) => UIO[B]]

    See also

    See zio.ZIO.memoize

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

    See also

    See zio.ZIO.mergeAll

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

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

    See also

    See zio.ZIO.never

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

    See also

    See zio.ZIO.none

  113. def not(effect: => UIO[Boolean]): UIO[Boolean]

    See also

    See zio.ZIO.not

  114. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  115. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  116. def onExecutor[A](executor: => Executor)(uio: UIO[A]): UIO[A]

    See also

    See zio.ZIO.onExecutor

  117. def raceAll[A](uio: => UIO[A], uios: => Iterable[UIO[A]]): UIO[A]

    See also

    See zio.ZIO.raceAll

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

    See also

    See zio.ZIO.reduceAll

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

  120. def replicate[A](n: => Int)(effect: => UIO[A]): Iterable[UIO[A]]

    See also

    See zio.ZIO.replicate

  121. def replicateZIO[A](n: => Int)(effect: => UIO[A]): UIO[Iterable[A]]

  122. def replicateZIODiscard[A](n: => Int)(effect: => UIO[A]): UIO[Unit]

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

    See also

    See zio.ZIO.reserve

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

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

    See also

    See zio.ZIO.runtime

  126. val runtimeConfig: UIO[RuntimeConfig]

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

    See also

    zio.ZIO.some

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

    See also

    See zio.ZIO.succeed

  129. def succeedBlocking[A](a: => A): UIO[A]

  130. def suspendSucceed[A](uio: => UIO[A]): UIO[A]

  131. def suspendSucceedWith[A](f: (RuntimeConfig, FiberId) => UIO[A]): UIO[A]

  132. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  133. def toString(): String
    Definition Classes
    AnyRef → Any
  134. def trace: UIO[ZTrace]

    See also

    See zio.ZIO.trace

  135. def traced[A](uio: => UIO[A]): UIO[A]

    See also

    See zio.ZIO.traced

  136. def uninterruptible[A](uio: => UIO[A]): UIO[A]

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

  138. val unit: UIO[Unit]

    See also

    See zio.ZIO.unit

  139. def unless[A](b: => Boolean)(zio: => UIO[A]): UIO[Option[A]]

    See also

    See zio.ZIO.unless

  140. def unlessZIO(b: => UIO[Boolean]): UnlessZIO[Any, Nothing]

    See also

    See zio.ZIO.unlessZIO

  141. def unsandbox[A](v: => IO[Cause[Nothing], A]): UIO[A]

  142. def untraced[A](uio: => UIO[A]): UIO[A]

    See also

    See zio.ZIO.untraced

  143. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  144. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  145. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  146. def when[A](b: => Boolean)(uio: => UIO[A]): UIO[Option[A]]

    See also

    See zio.ZIO.when

  147. def whenCase[A, B](a: => A)(pf: PartialFunction[A, UIO[B]]): UIO[Option[B]]

    See also

    See zio.ZIO.whenCase

  148. def whenCaseZIO[A, B](a: => UIO[A])(pf: PartialFunction[A, UIO[B]]): UIO[Option[B]]

  149. def whenZIO(b: => UIO[Boolean]): WhenZIO[Any, Nothing]

    See also

    See zio.ZIO.whenZIO

  150. def withRuntimeConfig[A](runtimeConfig: => RuntimeConfig)(uio: => UIO[A]): UIO[A]

  151. val yieldNow: 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]): 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]): BracketAcquire[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]): 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]): BracketExitAcquire[Any, Nothing, A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use acquireReleaseExitWith

    See also

    See bracketExit zio.ZIO

  5. def collectAllParN_[A](n: => Int)(as: => Iterable[UIO[A]]): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectAllParNDiscard

    See also

    See zio.ZIO.collectAllParN_

  6. def collectAllPar_[A](in: => Iterable[UIO[A]]): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectAllParDiscard

    See also

    See zio.ZIO.collectAllPar_

  7. def collectAll_[A](in: => Iterable[UIO[A]]): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use collectAllDiscard

    See also

    See zio.ZIO.collectAll_

  8. def effectAsync[A](register: ((UIO[A]) => Unit) => Any, blockingOn: => FiberId = FiberId.None): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use async

    See also

    See zio.ZIO.effectAsync

  9. def effectAsyncInterrupt[A](register: ((UIO[A]) => Unit) => Either[Canceler[Any], UIO[A]], blockingOn: => FiberId = FiberId.None): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use asyncInterrupt

    See also

    See zio.ZIO.effectAsyncInterrupt

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use asyncZIO

    See also

    See zio.ZIO.effectAsyncM

  11. def effectAsyncMaybe[A](register: ((UIO[A]) => Unit) => Option[UIO[A]], blockingOn: => FiberId = FiberId.None): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use asyncMaybe

    See also

    See zio.ZIO.effectAsyncMaybe

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use suspendSucceed

    See also

    See zio.ZIO.effectSuspendTotal

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use suspendSucceedWith

    See also

    See zio.ZIO.effectSuspendTotalWith

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use succeed

    See also

    See zio.ZIO.effectTotal

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foreachParNDiscard

    See also

    See zio.ZIO.foreachParN_

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foreachParDiscard

    See also

    See zio.ZIO.foreachPar_

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use foreachDiscard

    See also

    See zio.ZIO.foreach_

  18. def forkAll_[A](as: => Iterable[UIO[A]]): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use forkAllDiscard

    See also

    See zio.ZIO.forkAll_

  19. def fromFiberM[A](fiber: => UIO[Fiber[Nothing, A]]): UIO[A]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use fromFiberZIO

    See also

    See zio.ZIO.fromFiberM

  20. def halt(cause: => Cause[Nothing]): UIO[Nothing]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use failCause

    See also

    See zio.ZIO.halt

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use failCauseWith

    See also

    zio.ZIO.haltWith

  22. def ifM(b: => UIO[Boolean]): IfZIO[Any, Nothing]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use ifZIO

    See also

    zio.ZIO.ifM

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use onExecutor

    See also

    See zio.ZIO.lock

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use loopDiscard

    See also

    See zio.ZIO.loop_

  25. 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]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zip

    See also

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

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zip

    See also

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

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zip

    See also

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

  28. 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]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zipPar

    See also

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

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zipPar

    See also

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

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

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use zipPar

    See also

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

  31. def replicateM[A](n: => Int)(effect: => UIO[A]): UIO[Iterable[A]]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use replicateZIO

    See also

    See zio.ZIO.replicateM

  32. def replicateM_[A](n: => Int)(effect: => UIO[A]): UIO[Unit]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use replicateZIODiscard

    See also

    See zio.ZIO.replicateM_

  33. def unlessM(b: => UIO[Boolean]): UnlessZIO[Any, Nothing]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use unlessZIO

    See also

    See zio.ZIO.unlessM

  34. def whenCaseM[A, B](a: => UIO[A])(pf: PartialFunction[A, UIO[B]]): UIO[Option[B]]

    Annotations
    @deprecated
    Deprecated

    (Since version 2.0.0) use whenCaseZIO

    See also

    See zio.ZIO.whenCaseM

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