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 allowInterrupt: UIO[Unit]

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

    See also

    See zio.ZIO.apply

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

    See also

    See bracket zio.ZIO

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

    See also

    See bracket zio.ZIO

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

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

    See also

    See bracketExit zio.ZIO

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

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

  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  15. 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]]

    See also

    See zio.ZIO.collect

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

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

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

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

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

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

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

  23. def collectAllParN_[A](n: Int)(as: Iterable[UIO[A]]): UIO[Unit]

  24. def collectAllPar_[A](in: Iterable[UIO[A]]): UIO[Unit]

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

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

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

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

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

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

  31. def collectAll_[A](in: Iterable[UIO[A]]): UIO[Unit]

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

    See also

    See zio.ZIO.collectPar

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

  34. def descriptor: UIO[Descriptor]

    See also

    See zio.ZIO.descriptor

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

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

    See also

    See zio.ZIO.die

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

    See also

    See zio.ZIO.dieMessage

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

    See also

    See zio.ZIO.done

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

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

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

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

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

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

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

  46. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  47. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  48. val fiberId: UIO[Id]

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

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

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

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

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

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

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

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

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

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

    See also

    See zio.ZIO.flatten

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

    See also

    See zio.ZIO.foldLeft

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

    See also

    See zio.ZIO.foldRight

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    See also

    See zio.ZIO.forkAll_

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

    See also

    See zio.ZIO.fromEither

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

    See also

    See zio.ZIO.fromFiber

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

    See also

    See zio.ZIO.fromFiberM

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

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

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

    See also

    See zio.ZIO.halt

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

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

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

    See also

    zio.ZIO.ifM

  89. val interrupt: UIO[Nothing]

    See also

    See zio.ZIO.interrupt

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

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

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

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

    See also

    See zio.ZIO.iterate

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

    See also

    See zio.ZIO.left

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

    See also

    See zio.ZIO.lock

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

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

    See also

    See zio.ZIO.loop_

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

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

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

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

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

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

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

    See also

    See zio.ZIO.memoize

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

    See also

    See zio.ZIO.mergeAll

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

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

    See also

    See zio.ZIO.never

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

    See also

    See zio.ZIO.none

  111. def not(effect: UIO[Boolean]): UIO[Boolean]

    See also

    See zio.ZIO.not

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

    See also

    See zio.ZIO.raceAll

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

    See also

    See zio.ZIO.reduceAll

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

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

    See also

    See zio.ZIO.replicate

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

    See also

    See zio.ZIO.reserve

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

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

    See also

    See zio.ZIO.runtime

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

    See also

    zio.ZIO.some

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

    See also

    See zio.ZIO.succeed

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

    See also

    See zio.ZIO.trace

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

    See also

    See zio.ZIO.traced

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

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

  129. val unit: UIO[Unit]

    See also

    See zio.ZIO.unit

  130. def unless(b: => Boolean)(zio: => UIO[Any]): UIO[Unit]

    See also

    See zio.ZIO.unless

  131. def unlessM(b: UIO[Boolean]): UnlessM[Any, Nothing]

    See also

    See zio.ZIO.unlessM

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

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

    See also

    See zio.ZIO.untraced

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

    See also

    See zio.ZIO.when

  138. def whenCase[A](a: => A)(pf: PartialFunction[A, UIO[Any]]): UIO[Unit]

    See also

    See zio.ZIO.whenCase

  139. def whenCaseM[A](a: UIO[A])(pf: PartialFunction[A, UIO[Any]]): UIO[Unit]

    See also

    See zio.ZIO.whenCaseM

  140. def whenM(b: UIO[Boolean]): WhenM[Any, Nothing]

    See also

    See zio.ZIO.whenM

  141. val yieldNow: UIO[Unit]

    See also

    See zio.ZIO.yieldNow

Inherited from AnyRef

Inherited from Any

Ungrouped