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. final def absolve[A](v: UIO[Either[Nothing, A]]): UIO[A]

    Permalink

    See also

    See zio.ZIO.absolve

  5. final 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. final def bracket[A, B](acquire: UIO[A], release: (A) ⇒ UIO[_], use: (A) ⇒ UIO[B]): UIO[B]

    Permalink

    See also

    See bracket zio.ZIO

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

    Permalink

    See also

    See bracket zio.ZIO

  10. final def bracketExit[A, B](acquire: UIO[A], release: (A, Exit[Nothing, B]) ⇒ UIO[_], use: (A) ⇒ UIO[B]): UIO[B]

    Permalink

    See also

    See bracketExit zio.ZIO

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

    Permalink

    See also

    See bracketExit zio.ZIO

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

    Permalink

  13. final def checkSupervised[A](f: (SuperviseStatus) ⇒ UIO[A]): UIO[A]

    Permalink

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

    Permalink

    See also

    See zio.ZIO.checkTraced

  15. final def children: UIO[IndexedSeq[Fiber[_, _]]]

    Permalink

    See also

    See zio.ZIO.children

  16. def clone(): AnyRef

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

    Permalink

    See also

    See zio.ZIO.collectAll

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

    Permalink

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

    Permalink

  20. final def descriptor: UIO[Descriptor]

    Permalink

    See also

    See zio.ZIO.descriptor

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

    Permalink

  22. final def die(t: Throwable): UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.die

  23. final def dieMessage(message: String): UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.dieMessage

  24. final def done[A](r: Exit[Nothing, A]): UIO[A]

    Permalink

    See also

    See zio.ZIO.done

  25. final def effectAsync[A](register: ((UIO[A]) ⇒ Unit) ⇒ Unit): UIO[A]

    Permalink

    See also

    See zio.ZIO.effectAsync

  26. final def effectAsyncInterrupt[A](register: ((UIO[A]) ⇒ Unit) ⇒ Either[Canceler, UIO[A]]): UIO[A]

    Permalink

  27. final def effectAsyncM[A](register: ((UIO[A]) ⇒ Unit) ⇒ UIO[_]): UIO[A]

    Permalink

  28. final def effectAsyncMaybe[A](register: ((UIO[A]) ⇒ Unit) ⇒ Option[UIO[A]]): UIO[A]

    Permalink

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

    Permalink

  30. final def effectSuspendTotalWith[A](p: (Platform) ⇒ UIO[A]): UIO[A]

    Permalink

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

    Permalink

    See also

    See zio.ZIO.effectTotal

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  34. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  35. final def flatten[A](uio: UIO[UIO[A]]): UIO[A]

    Permalink

    See also

    See zio.ZIO.flatten

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

    Permalink

    See also

    See zio.ZIO.foldLeft

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

    Permalink

    See also

    See zio.ZIO.foreach

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

    Permalink

    See also

    See zio.ZIO.foreachPar

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

    Permalink

    See also

    See zio.ZIO.foreachParN

  40. final def foreachParN_[A](n: Int)(as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

    Permalink

  41. final def foreachPar_[A](as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

    Permalink

    See also

    See zio.ZIO.foreachPar_

  42. final def foreach_[A](as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

    Permalink

    See also

    See zio.ZIO.foreach_

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

    Permalink

    See also

    See zio.ZIO.forkAll

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

    Permalink

    See also

    See zio.ZIO.forkAll_

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

    Permalink

    See also

    See zio.ZIO.fromEither

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

    Permalink

    See also

    See zio.ZIO.fromFiber

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

    Permalink

    See also

    See zio.ZIO.fromFiberM

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

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

    Permalink

    See also

    See zio.ZIO.halt

  50. final def handleChildrenWith[A](uio: UIO[A])(supervisor: (IndexedSeq[Fiber[_, _]]) ⇒ UIO[_]): UIO[A]

    Permalink

  51. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  52. final val interrupt: UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.interrupt

  53. final def interruptChildren[A](uio: UIO[A]): UIO[A]

    Permalink

  54. final def interruptible[A](uio: UIO[A]): UIO[A]

    Permalink

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

    Permalink

  56. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  57. final def left[A](a: A): UIO[Either[A, Nothing]]

    Permalink

    See also

    See zio.ZIO.left

  58. final def lock[A](executor: Executor)(uio: UIO[A]): UIO[A]

    Permalink

    See also

    See zio.ZIO.lock

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

    Permalink

    See also

    See zio.ZIO.mergeAll

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

    Permalink

    See also

    See zio.ZIO.mergeAllPar

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

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

    Permalink

    See also

    See zio.ZIO.never

  63. final val none: UIO[Option[Nothing]]

    Permalink

    See also

    See zio.ZIO.none

  64. final def notify(): Unit

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

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

    Permalink

    See also

    See zio.ZIO.raceAll

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

    Permalink

    See also

    See zio.ZIO.reduceAll

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

    Permalink

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

    Permalink

    See also

    See zio.ZIO.replicate

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

    Permalink

    See also

    See zio.ZIO.reserve

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

    Permalink

    See also

    zio.ZIO.right

  72. final def runtime: UIO[Runtime[Any]]

    Permalink

    See also

    See zio.ZIO.runtime

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

    Permalink

    See zio.ZIO.sequence

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

    Permalink

    See also

    See zio.ZIO.sequencePar

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

    Permalink

    See zio.ZIO.sequenceParN

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

    Permalink

    See also

    zio.ZIO.some

  77. final def succeed[A](a: A): UIO[A]

    Permalink

    See also

    See zio.ZIO.succeed

  78. final def succeedLazy[A](a: ⇒ A): UIO[A]

    Permalink

    See also

    See zio.ZIO.succeedLazy

  79. final def superviseStatus[A](status: SuperviseStatus)(uio: UIO[A]): UIO[A]

    Permalink

  80. final def supervised[A](uio: UIO[A]): UIO[A]

    Permalink

    See also

    See zio.ZIO.supervised

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

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

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

    Permalink

    See also

    See zio.ZIO.trace

  84. final def traced[A](uio: UIO[A]): UIO[A]

    Permalink

    See also

    See zio.ZIO.traced

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

    Permalink

    See also

    See zio.ZIO.traverse

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

    Permalink

    See also

    See zio.ZIO.traversePar

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

    Permalink

  88. final def traverseParN_[A](n: Int)(as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

    Permalink

  89. final def traversePar_[A](as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

    Permalink

  90. final def traverse_[A](as: Iterable[A])(f: (A) ⇒ UIO[_]): UIO[Unit]

    Permalink

    See also

    See zio.ZIO.traverse_

  91. final def uninterruptible[A](uio: UIO[A]): UIO[A]

    Permalink

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

    Permalink

  93. final val unit: UIO[Unit]

    Permalink

    See also

    See zio.ZIO.unit

  94. final def unsupervised[R, E, A](uio: UIO[A]): UIO[A]

    Permalink

    See also

    See zio.ZIO.unsupervised.

  95. final def untraced[A](uio: UIO[A]): UIO[A]

    Permalink

    See also

    See zio.ZIO.untraced

  96. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  99. final def when(b: Boolean)(uio: UIO[_]): UIO[Unit]

    Permalink

    See also

    See zio.ZIO.when

  100. final def whenCase[R, E, A](a: A)(pf: PartialFunction[A, ZIO[R, E, _]]): ZIO[R, E, Unit]

    Permalink

    See also

    See zio.ZIO.whenCase

  101. final def whenCaseM[R, E, A](a: ZIO[R, E, A])(pf: PartialFunction[A, ZIO[R, E, _]]): ZIO[R, E, Unit]

    Permalink

    See also

    See zio.ZIO.whenCaseM

  102. final def whenM(b: UIO[Boolean])(uio: UIO[_]): UIO[Unit]

    Permalink

    See also

    See zio.ZIO.whenM

  103. final val yieldNow: UIO[Unit]

    Permalink

    See also

    See zio.ZIO.yieldNow

Deprecated Value Members

  1. final def suspend[A](uio: ⇒ UIO[A]): UIO[A]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use effectSuspendTotal

  2. final def suspendWith[A](p: (Platform) ⇒ UIO[A]): UIO[A]

    Permalink
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) use effectSuspendTotalWith

Inherited from AnyRef

Inherited from Any

Ungrouped