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]]): 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]

    See also

    See zio.ZIO.checkTraced

  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  15. def collect[R, E, A, B](in: Iterable[A])(f: (A) ⇒ ZIO[Any, Option[Nothing], B]): UIO[List[B]]

    See also

    See zio.ZIO.collect

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

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

  18. def collectAll[A](in: Iterable[UIO[A]]): UIO[List[A]]

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

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

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

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

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

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

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

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

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

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

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

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

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

  32. def collectAll_[A](in: Chunk[UIO[A]]): UIO[Unit]

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

  34. def collectPar[R, E, A, B](in: Iterable[A])(f: (A) ⇒ ZIO[Any, Option[Nothing], B]): UIO[List[B]]

    See also

    See zio.ZIO.collectPar

  35. def collectParN[R, A, B](n: Int)(in: Iterable[A])(f: (A) ⇒ ZIO[Any, Option[Nothing], B]): UIO[List[B]]

    See also

    See zio.ZIO.collectParN

  36. def descriptor: UIO[Descriptor]

    See also

    See zio.ZIO.descriptor

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

  38. def die(t: ⇒ Throwable): UIO[Nothing]

    See also

    See zio.ZIO.die

  39. def dieMessage(message: ⇒ String): UIO[Nothing]

    See also

    See zio.ZIO.dieMessage

  40. def done[A](r: ⇒ Exit[Nothing, A]): UIO[A]

    See also

    See zio.ZIO.done

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

    See also

    See zio.ZIO.effectAsync

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

  43. def effectAsyncM[A](register: ((UIO[A]) ⇒ Unit) ⇒ UIO[Any]): UIO[A]

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

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

  46. def effectSuspendTotalWith[A](p: (Platform, Id) ⇒ UIO[A]): UIO[A]

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

    See also

    See zio.ZIO.effectTotal

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

  51. def filter[A](as: Iterable[A])(f: (A) ⇒ UIO[Boolean]): UIO[List[A]]

  52. def filterNot[A](as: Iterable[A])(f: (A) ⇒ UIO[Boolean]): UIO[List[A]]

  53. def filterNotPar[A](as: Iterable[A])(f: (A) ⇒ UIO[Boolean]): UIO[List[A]]

  54. def filterPar[A](as: Iterable[A])(f: (A) ⇒ UIO[Boolean]): UIO[List[A]]

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

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

    See also

    See zio.ZIO.flatten

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

    See also

    See zio.ZIO.foldLeft

  59. def foldRight[S, A](in: Iterable[A])(zero: S)(f: (A, S) ⇒ UIO[S]): UIO[S]

    See also

    See zio.ZIO.foldRight

  60. def foreach[A, B](in: NonEmptyChunk[A])(f: (A) ⇒ UIO[B]): UIO[NonEmptyChunk[B]]

  61. def foreach[A, B](in: Chunk[A])(f: (A) ⇒ UIO[B]): UIO[Chunk[B]]

  62. def foreach[A, B](in: Option[A])(f: (A) ⇒ UIO[B]): UIO[Option[B]]

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

  64. final def foreachExec[A, B](as: Iterable[A])(exec: ExecutionStrategy)(f: (A) ⇒ UIO[B]): UIO[List[B]]

    See also

    See zio.ZIO.foreachExec

  65. def foreachPar[A, B](as: NonEmptyChunk[A])(fn: (A) ⇒ UIO[B]): UIO[NonEmptyChunk[B]]

  66. def foreachPar[A, B](as: Chunk[A])(fn: (A) ⇒ UIO[B]): UIO[Chunk[B]]

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

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

    See also

    See zio.ZIO.foreachParN

  69. def foreachParN_[A](n: Int)(as: Iterable[A])(f: (A) ⇒ UIO[Any]): UIO[Unit]

  70. def foreachPar_[A](as: Chunk[A])(f: (A) ⇒ UIO[Any]): UIO[Unit]

  71. def foreachPar_[A](as: Iterable[A])(f: (A) ⇒ UIO[Any]): UIO[Unit]

  72. def foreach_[A](as: Chunk[A])(f: (A) ⇒ UIO[Any]): UIO[Unit]

  73. def foreach_[A](as: Iterable[A])(f: (A) ⇒ UIO[Any]): UIO[Unit]

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

    See also

    See zio.ZIO.forkAll

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

    See also

    See zio.ZIO.forkAll_

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

    See also

    See zio.ZIO.fromEither

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

    See also

    See zio.ZIO.fromFiber

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

    See also

    See zio.ZIO.fromFiberM

  79. def fromFunction[A](f: (Any) ⇒ A): UIO[A]

  80. def fromFunctionM[A](f: (Any) ⇒ UIO[A]): UIO[A]

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

    See also

    See zio.ZIO.halt

  83. def haltWith(function: (() ⇒ ZTrace) ⇒ Cause[Nothing]): UIO[Nothing]

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

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

    See also

    zio.ZIO.ifM

  87. val interrupt: UIO[Nothing]

    See also

    See zio.ZIO.interrupt

  88. def interruptAs(fiberId: ⇒ Id): UIO[Nothing]

    See also

    See zio.ZIO.interruptAs

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

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

  91. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  92. def iterate[S](initial: S)(cont: (S) ⇒ Boolean)(body: (S) ⇒ UIO[S]): UIO[S]

    See also

    See zio.ZIO.iterate

  93. def left[A](a: ⇒ A): UIO[Either[A, Nothing]]

    See also

    See zio.ZIO.left

  94. def lock[A](executor: ⇒ Executor)(uio: UIO[A]): UIO[A]

    See also

    See zio.ZIO.lock

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

  96. def loop_[S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ UIO[Any]): UIO[Unit]

    See also

    See zio.ZIO.loop_

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

  98. def mapN[A, B, C, D](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C])(f: (A, B, C) ⇒ D): UIO[D]

  99. def mapN[A, B, C](uio1: UIO[A], uio2: UIO[B])(f: (A, B) ⇒ C): UIO[C]

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

  101. def mapParN[A, B, C, D](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C])(f: (A, B, C) ⇒ D): UIO[D]

  102. def mapParN[A, B, C](uio1: UIO[A], uio2: UIO[B])(f: (A, B) ⇒ C): UIO[C]

  103. def memoize[A, B](f: (A) ⇒ UIO[B]): UIO[(A) ⇒ UIO[B]]

    See also

    See zio.ZIO.memoize

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

    See also

    See zio.ZIO.mergeAll

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

    See also

    See zio.ZIO.mergeAllPar

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

    See also

    See zio.ZIO.never

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

    See also

    See zio.ZIO.none

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

    See also

    See zio.ZIO.raceAll

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

    See also

    See zio.ZIO.reduceAll

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

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

    See also

    See zio.ZIO.replicate

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

    See also

    See zio.ZIO.reserve

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

    See also

    zio.ZIO.right

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

    See also

    See zio.ZIO.runtime

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

    See also

    zio.ZIO.some

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

    See also

    See zio.ZIO.succeed

  120. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  121. def toString(): String
    Definition Classes
    AnyRef → Any
  122. def trace: UIO[ZTrace]

    See also

    See zio.ZIO.trace

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

    See also

    See zio.ZIO.traced

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

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

  126. val unit: UIO[Unit]

    See also

    See zio.ZIO.unit

  127. def unless(b: ⇒ Boolean)(zio: ⇒ UIO[Any]): UIO[Unit]

    See also

    See zio.ZIO.unless

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

    See also

    See zio.ZIO.unlessM

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

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

    See also

    See zio.ZIO.untraced

  131. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  132. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  133. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  134. def when(b: ⇒ Boolean)(uio: ⇒ UIO[Any]): UIO[Unit]

    See also

    See zio.ZIO.when

  135. def whenCase[A](a: ⇒ A)(pf: PartialFunction[A, UIO[Any]]): UIO[Unit]

    See also

    See zio.ZIO.whenCase

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

    See also

    See zio.ZIO.whenCaseM

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

    See also

    See zio.ZIO.whenM

  138. val yieldNow: UIO[Unit]

    See also

    See zio.ZIO.yieldNow

Inherited from AnyRef

Inherited from Any

Ungrouped