Object

zio

UIO

Related Doc: package zio

Permalink

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def absolve[A](v: UIO[Either[Nothing, A]]): UIO[A]

    Permalink

    See also

    See zio.ZIO.absolve

  5. def allowInterrupt: UIO[Unit]

    Permalink

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

    Permalink

    See also

    See zio.ZIO.apply

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def bracket[A, B](acquire: UIO[A], release: (A) ⇒ UIO[Any], use: (A) ⇒ UIO[B]): UIO[B]

    Permalink

    See also

    See bracket zio.ZIO

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

    Permalink

    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]

    Permalink

    See also

    See bracketExit zio.ZIO

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

    Permalink

    See also

    See bracketExit zio.ZIO

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.checkTraced

  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  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]]

    Permalink

    See also

    See zio.ZIO.collect

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.collectPar

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

    Permalink

    See also

    See zio.ZIO.collectParN

  37. def descriptor: UIO[Descriptor]

    Permalink

    See also

    See zio.ZIO.descriptor

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.die

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

    Permalink

    See also

    See zio.ZIO.dieMessage

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

    Permalink

    See also

    See zio.ZIO.done

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

    Permalink

    See also

    See zio.ZIO.effectAsync

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.effectTotal

  49. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  50. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  51. def executor: UIO[Executor]

    Permalink

    See also

    See zio.ZIO.executor

  52. val fiberId: UIO[Id]

    Permalink

  53. def filter[A](as: Set[A])(f: (A) ⇒ UIO[Boolean]): UIO[Set[A]]

    Permalink

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

    Permalink

  55. def filterNot[A](as: Set[A])(f: (A) ⇒ UIO[Boolean]): UIO[Set[A]]

    Permalink

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

    Permalink

  57. def filterNotPar[A](as: Set[A])(f: (A) ⇒ UIO[Boolean]): UIO[Set[A]]

    Permalink

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

    Permalink

  59. def filterPar[A](as: Set[A])(f: (A) ⇒ UIO[Boolean]): UIO[Set[A]]

    Permalink

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

    Permalink

  61. def finalize(): Unit

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.flatten

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

    Permalink

    See also

    See zio.ZIO.foldLeft

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

    Permalink

    See also

    See zio.ZIO.foldRight

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.foreachExec

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

    Permalink

  74. def foreachPar[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) ⇒ UIO[(Key2, Value2)]): UIO[Map[Key2, Value2]]

    Permalink

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

    Permalink

  76. def foreachPar[A, B](as: Set[A])(fn: (A) ⇒ UIO[B]): UIO[Set[B]]

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.foreachParN

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.forkAll

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

    Permalink

    See also

    See zio.ZIO.forkAll_

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

    Permalink

    See also

    See zio.ZIO.fromEither

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

    Permalink

    See also

    See zio.ZIO.fromFiber

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

    Permalink

    See also

    See zio.ZIO.fromFiberM

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

    Permalink

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

    Permalink

  89. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  90. def halt(cause: ⇒ Cause[Nothing]): UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.halt

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

    Permalink

  92. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  93. def identity: UIO[Any]

    Permalink

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

    Permalink

    See also

    zio.ZIO.ifM

  95. val interrupt: UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.interrupt

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

    Permalink

    See also

    See zio.ZIO.interruptAs

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

    Permalink

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

    Permalink

  99. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  100. def iterate[S](initial: S)(cont: (S) ⇒ Boolean)(body: (S) ⇒ UIO[S]): UIO[S]

    Permalink

    See also

    See zio.ZIO.iterate

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

    Permalink

    See also

    See zio.ZIO.left

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

    Permalink

    See also

    See zio.ZIO.lock

  103. def loop[A, S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ UIO[A]): UIO[List[A]]

    Permalink

    See also

    See zio.ZIO.loop

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

    Permalink

    See also

    See zio.ZIO.loop_

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.memoize

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

    Permalink

    See also

    See zio.ZIO.mergeAll

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

    Permalink

    See also

    See zio.ZIO.mergeAllPar

  114. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  115. val never: UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.never

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

    Permalink

    See also

    See zio.ZIO.none

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

    Permalink

    See also

    See zio.ZIO.not

  118. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  119. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  120. def raceAll[A](uio: UIO[A], uios: Iterable[UIO[A]]): UIO[A]

    Permalink

    See also

    See zio.ZIO.raceAll

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

    Permalink

    See also

    See zio.ZIO.reduceAll

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.replicate

  124. def replicateM[A](n: Int)(effect: UIO[A]): UIO[Iterable[A]]

    Permalink

    See also

    See zio.ZIO.replicateM

  125. def replicateM_[A](n: Int)(effect: UIO[A]): UIO[Unit]

    Permalink

    See also

    See zio.ZIO.replicateM_

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

    Permalink

    See also

    See zio.ZIO.reserve

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

    Permalink

    See also

    zio.ZIO.right

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

    Permalink

    See also

    See zio.ZIO.runtime

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

    Permalink

    See also

    zio.ZIO.some

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

    Permalink

    See also

    See zio.ZIO.succeed

  131. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  132. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  133. def trace: UIO[ZTrace]

    Permalink

    See also

    See zio.ZIO.trace

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

    Permalink

    See also

    See zio.ZIO.traced

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

    Permalink

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

    Permalink

  137. val unit: UIO[Unit]

    Permalink

    See also

    See zio.ZIO.unit

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

    Permalink

    See also

    See zio.ZIO.unless

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

    Permalink

    See also

    See zio.ZIO.unlessM

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.untraced

  142. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  143. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  144. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  145. def when(b: ⇒ Boolean)(uio: ⇒ UIO[Any]): UIO[Unit]

    Permalink

    See also

    See zio.ZIO.when

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

    Permalink

    See also

    See zio.ZIO.whenCase

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

    Permalink

    See also

    See zio.ZIO.whenCaseM

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

    Permalink

    See also

    See zio.ZIO.whenM

  149. val yieldNow: UIO[Unit]

    Permalink

    See also

    See zio.ZIO.yieldNow

Inherited from AnyRef

Inherited from Any

Ungrouped