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 adopt(fiber: Fiber[Any, Any]): UIO[Boolean]

    Permalink

    See also

    See zio.ZIO.adopt

  6. def allowInterrupt: UIO[Unit]

    Permalink

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

    Permalink

    See also

    See zio.ZIO.apply

  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. val awaitAllChildren: UIO[Unit]

    Permalink

  10. def bracket[A, B](acquire: UIO[A], release: (A) ⇒ UIO[Any], use: (A) ⇒ UIO[B]): UIO[B]

    Permalink

    See also

    See bracket zio.ZIO

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

    Permalink

    See also

    See bracket zio.ZIO

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

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

    Permalink

    See also

    See bracketExit zio.ZIO

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.checkTraced

  16. def children: UIO[Iterable[Fiber[Any, Any]]]

    Permalink

    See also

    See zio.ZIO.children

  17. def clone(): AnyRef

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

    Permalink

    See also

    See zio.ZIO.collect

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.collectPar

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

    Permalink

    See also

    See zio.ZIO.collectParN

  39. def descriptor: UIO[Descriptor]

    Permalink

    See also

    See zio.ZIO.descriptor

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.die

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

    Permalink

    See also

    See zio.ZIO.dieMessage

  43. def disown(fiber: Fiber[Any, Any]): UIO[Boolean]

    Permalink

    See also

    See zio.ZIO.disown

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

    Permalink

    See also

    See zio.ZIO.done

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

    Permalink

    See also

    See zio.ZIO.effectAsync

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.effectTotal

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  54. val fiberId: UIO[Id]

    Permalink

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

    Permalink

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

    Permalink

  57. def finalize(): Unit

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.flatten

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

    Permalink

    See also

    See zio.ZIO.foldLeft

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

    Permalink

    See also

    See zio.ZIO.foldRight

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.foreachExec

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.foreachParN

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.forkAll

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

    Permalink

    See also

    See zio.ZIO.forkAll_

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

    Permalink

    See also

    See zio.ZIO.fromEither

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

    Permalink

    See also

    See zio.ZIO.fromFiber

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

    Permalink

    See also

    See zio.ZIO.fromFiberM

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

    Permalink

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

    Permalink

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

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

    Permalink

    See also

    See zio.ZIO.halt

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

    Permalink

  86. def hashCode(): Int

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

    Permalink

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

    Permalink

    See also

    zio.ZIO.ifM

  89. val interrupt: UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.interrupt

  90. def interruptAllChildren: UIO[Unit]

    Permalink

    See also

    See [zio.ZIO.interruptAllChildren]

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

    Permalink

    See also

    See zio.ZIO.interruptAs

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

    Permalink

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

    Permalink

  94. final def isInstanceOf[T0]: Boolean

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

    Permalink

    See also

    See zio.ZIO.iterate

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

    Permalink

    See also

    See zio.ZIO.left

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

    Permalink

    See also

    See zio.ZIO.lock

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

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

    Permalink

    See also

    See zio.ZIO.loop_

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

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

    Permalink

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

    Permalink

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

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.memoize

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

    Permalink

    See also

    See zio.ZIO.mergeAll

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

    Permalink

    See also

    See zio.ZIO.mergeAllPar

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

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

    Permalink

    See also

    See zio.ZIO.never

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

    Permalink

    See also

    See zio.ZIO.none

  112. final def notify(): Unit

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

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

    Permalink

    See also

    See zio.ZIO.raceAll

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

    Permalink

    See also

    See zio.ZIO.reduceAll

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.replicate

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

    Permalink

    See also

    See zio.ZIO.reserve

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

    Permalink

    See also

    zio.ZIO.right

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

    Permalink

    See also

    See zio.ZIO.runtime

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

    Permalink

    See also

    zio.ZIO.some

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

    Permalink

    See also

    See zio.ZIO.succeed

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

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

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

    Permalink

    See also

    See zio.ZIO.trace

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

    Permalink

    See also

    See zio.ZIO.traced

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

    Permalink

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

    Permalink

  129. val unit: UIO[Unit]

    Permalink

    See also

    See zio.ZIO.unit

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

    Permalink

    See also

    See zio.ZIO.unless

  131. def unlessM(b: UIO[Boolean])(zio: ⇒ UIO[Any]): UIO[Unit]

    Permalink

    See also

    See zio.ZIO.unlessM

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.untraced

  134. final def wait(): Unit

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

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

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

    Permalink

    See also

    See zio.ZIO.when

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

    Permalink

    See also

    See zio.ZIO.whenCase

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

    Permalink

    See also

    See zio.ZIO.whenCaseM

  140. def whenM(b: UIO[Boolean])(uio: ⇒ UIO[Any]): UIO[Unit]

    Permalink

    See also

    See zio.ZIO.whenM

  141. val yieldNow: UIO[Unit]

    Permalink

    See also

    See zio.ZIO.yieldNow

Inherited from AnyRef

Inherited from Any

Ungrouped