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. val awaitAllChildren: UIO[Unit]

    Permalink

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

    Permalink

    See also

    See bracket zio.ZIO

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

    Permalink

    See also

    See bracket zio.ZIO

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

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

    Permalink

    See also

    See bracketExit zio.ZIO

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.checkTraced

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

    Permalink

    See also

    See zio.ZIO.children

  16. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  17. def collectAll[A](in: Iterable[UIO[A]]): UIO[List[A]]

    Permalink

    See also

    See zio.ZIO.collectAll

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

  26. def descriptor: UIO[Descriptor]

    Permalink

    See also

    See zio.ZIO.descriptor

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.die

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

    Permalink

    See also

    See zio.ZIO.dieMessage

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

    Permalink

    See also

    See zio.ZIO.disown

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

    Permalink

    See also

    See zio.ZIO.done

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

    Permalink

    See also

    See zio.ZIO.effectAsync

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.effectTotal

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

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

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

    Permalink

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

    Permalink

  43. def finalize(): Unit

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.flatten

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

    Permalink

    See also

    See zio.ZIO.foldLeft

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

    Permalink

    See also

    See zio.ZIO.foldRight

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.foreachParN

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.forkAll

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

    Permalink

    See also

    See zio.ZIO.forkAll_

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

    Permalink

    See also

    See zio.ZIO.fromEither

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

    Permalink

    See also

    See zio.ZIO.fromFiber

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

    Permalink

    See also

    See zio.ZIO.fromFiberM

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

    Permalink

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

    Permalink

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

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

    Permalink

    See also

    See zio.ZIO.halt

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

    Permalink

  69. def hashCode(): Int

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

    Permalink

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

    Permalink

    See also

    zio.ZIO.ifM

  72. val interrupt: UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.interrupt

  73. def interruptAllChildren: UIO[Unit]

    Permalink

    See also

    See [zio.ZIO.interruptAllChildren]

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

    Permalink

    See also

    See zio.ZIO.interruptAs

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

    Permalink

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

    Permalink

  77. final def isInstanceOf[T0]: Boolean

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

    Permalink

    See also

    See zio.ZIO.iterate

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

    Permalink

    See also

    See zio.ZIO.left

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

    Permalink

    See also

    See zio.ZIO.lock

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

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

    Permalink

    See also

    See zio.ZIO.loop_

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

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

    Permalink

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

    Permalink

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

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

    Permalink

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.mergeAll

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

    Permalink

    See also

    See zio.ZIO.mergeAllPar

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

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

    Permalink

    See also

    See zio.ZIO.never

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

    Permalink

    See also

    See zio.ZIO.none

  94. final def notify(): Unit

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

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

    Permalink

    See also

    See zio.ZIO.raceAll

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

    Permalink

    See also

    See zio.ZIO.reduceAll

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.replicate

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

    Permalink

    See also

    See zio.ZIO.reserve

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

    Permalink

    See also

    zio.ZIO.right

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

    Permalink

    See also

    See zio.ZIO.runtime

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

    Permalink

    See also

    zio.ZIO.some

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

    Permalink

    See also

    See zio.ZIO.succeed

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

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

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

    Permalink

    See also

    See zio.ZIO.trace

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

    Permalink

    See also

    See zio.ZIO.traced

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

    Permalink

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

    Permalink

  111. val unit: UIO[Unit]

    Permalink

    See also

    See zio.ZIO.unit

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.untraced

  114. final def wait(): Unit

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

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

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

    Permalink

    See also

    See zio.ZIO.when

  118. def whenCase[R, E, A](a: ⇒ A)(pf: PartialFunction[A, ZIO[R, E, Any]]): ZIO[R, E, Unit]

    Permalink

    See also

    See zio.ZIO.whenCase

  119. def whenCaseM[R, E, A](a: ZIO[R, E, A])(pf: PartialFunction[A, ZIO[R, E, Any]]): ZIO[R, E, Unit]

    Permalink

    See also

    See zio.ZIO.whenCaseM

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

    Permalink

    See also

    See zio.ZIO.whenM

  121. val yieldNow: UIO[Unit]

    Permalink

    See also

    See zio.ZIO.yieldNow

Deprecated Value Members

  1. def sequence[A](in: Iterable[UIO[A]]): UIO[List[A]]

    Permalink

    See zio.ZIO.sequence

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use collectAll

  2. def sequencePar[A](as: Iterable[UIO[A]]): UIO[List[A]]

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use collectAllPar

    See also

    See zio.ZIO.sequencePar

  3. def sequenceParN[A](n: Int)(as: Iterable[UIO[A]]): UIO[List[A]]

    Permalink

    See zio.ZIO.sequenceParN

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use collectAllParN

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

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use foreach

    See also

    See zio.ZIO.traverse

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

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use foreachPar

    See also

    See zio.ZIO.traversePar

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

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use foreachParN

    See also

    See zio.ZIO.traverseParN

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

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use foreachParN_

    See also

    See zio.ZIO.traverseParN_

  8. def traversePar_[A](as: Iterable[A])(f: (A) ⇒ UIO[Any]): UIO[Unit]

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use foreachPar_

    See also

    See zio.ZIO.traversePar_

  9. def traverse_[A](as: Iterable[A])(f: (A) ⇒ UIO[Any]): UIO[Unit]

    Permalink

    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use foreach_

    See also

    See zio.ZIO.traverse_

Inherited from AnyRef

Inherited from Any

Ungrouped