object UIO
- Alphabetic
- By Inheritance
- UIO
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def absolve[A](v: UIO[Either[Nothing, A]]): UIO[A]
- See also
See zio.ZIO.absolve
- final def allowInterrupt: UIO[Unit]
- See also
- final def apply[A](a: => A): UIO[A]
- See also
See zio.ZIO.apply
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- final def bracket[A, B](acquire: UIO[A], release: (A) => UIO[_], use: (A) => UIO[B]): UIO[B]
- See also
See bracket zio.ZIO
- final def bracket[A](acquire: UIO[A]): BracketAcquire[Any, Nothing, A]
- See also
See bracket zio.ZIO
- final def bracketExit[A, B](acquire: UIO[A], release: (A, Exit[Nothing, B]) => UIO[_], use: (A) => UIO[B]): UIO[B]
- See also
See bracketExit zio.ZIO
- final def bracketExit[A](acquire: UIO[A]): BracketExitAcquire[Any, Nothing, A]
- See also
See bracketExit zio.ZIO
- final def checkInterruptible[A](f: (InterruptStatus) => UIO[A]): UIO[A]
- See also
- final def checkSupervised[A](f: (SuperviseStatus) => UIO[A]): UIO[A]
- See also
- final def checkTraced[A](f: (TracingStatus) => UIO[A]): UIO[A]
- See also
- final def children: UIO[IndexedSeq[Fiber[_, _]]]
- See also
See zio.ZIO.children
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def collectAll[A](in: Iterable[UIO[A]]): UIO[List[A]]
- See also
- final def collectAllPar[A](as: Iterable[UIO[A]]): UIO[List[A]]
- See also
- final def collectAllParN[A](n: Int)(as: Iterable[UIO[A]]): UIO[List[A]]
- See also
- final def collectAllSuccesses[A](in: Iterable[UIO[A]]): UIO[List[A]]
- See also
- final def collectAllSuccessesPar[A](as: Iterable[UIO[A]]): UIO[List[A]]
- See also
- final def collectAllSuccessesParN[A](n: Int)(as: Iterable[UIO[A]]): UIO[List[A]]
- See also
- final def collectAllWith[A, B](in: Iterable[UIO[A]])(f: PartialFunction[A, B]): UIO[List[B]]
- See also
- final def collectAllWithPar[A, B](as: Iterable[UIO[A]])(f: PartialFunction[A, B]): UIO[List[B]]
- See also
- final def collectAllWithParN[A, B](n: Int)(as: Iterable[UIO[A]])(f: PartialFunction[A, B]): UIO[List[B]]
- See also
- final def descriptor: UIO[Descriptor]
- See also
- final def descriptorWith[A](f: (Descriptor) => UIO[A]): UIO[A]
- See also
- final def die(t: Throwable): UIO[Nothing]
- See also
See zio.ZIO.die
- final def dieMessage(message: String): UIO[Nothing]
- See also
- final def done[A](r: Exit[Nothing, A]): UIO[A]
- See also
See zio.ZIO.done
- final def effectAsync[A](register: ((UIO[A]) => Unit) => Unit): UIO[A]
- See also
- final def effectAsyncInterrupt[A](register: ((UIO[A]) => Unit) => Either[Canceler[Any], UIO[A]]): UIO[A]
- See also
- final def effectAsyncM[A](register: ((UIO[A]) => Unit) => UIO[_]): UIO[A]
- See also
- final def effectAsyncMaybe[A](register: ((UIO[A]) => Unit) => Option[UIO[A]]): UIO[A]
- See also
- final def effectSuspendTotal[A](uio: => UIO[A]): UIO[A]
- See also
- final def effectSuspendTotalWith[A](p: (Platform) => UIO[A]): UIO[A]
- See also
- final def effectTotal[A](effect: => A): UIO[A]
- See also
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def firstSuccessOf[A](uio: UIO[A], rest: Iterable[UIO[A]]): UIO[A]
- See also
- final def flatten[A](uio: UIO[UIO[A]]): UIO[A]
- See also
See zio.ZIO.flatten
- final def foldLeft[S, A](in: Iterable[A])(zero: S)(f: (S, A) => UIO[S]): UIO[S]
- See also
See zio.ZIO.foldLeft
- final def foreach[A, B](in: Iterable[A])(f: (A) => UIO[B]): UIO[List[B]]
- See also
See zio.ZIO.foreach
- final def foreachPar[A, B](as: Iterable[A])(fn: (A) => UIO[B]): UIO[List[B]]
- See also
- final def foreachParN[A, B](n: Int)(as: Iterable[A])(fn: (A) => UIO[B]): UIO[List[B]]
- See also
- final def foreachParN_[A](n: Int)(as: Iterable[A])(f: (A) => UIO[_]): UIO[Unit]
- See also
- final def foreachPar_[A](as: Iterable[A])(f: (A) => UIO[_]): UIO[Unit]
- See also
- final def foreach_[A](as: Iterable[A])(f: (A) => UIO[_]): UIO[Unit]
- See also
See zio.ZIO.foreach_
- final def forkAll[A](as: Iterable[UIO[A]]): UIO[Fiber[Nothing, List[A]]]
- See also
See zio.ZIO.forkAll
- final def forkAll_[A](as: Iterable[UIO[A]]): UIO[Unit]
- See also
See zio.ZIO.forkAll_
- final def fromEither[A](v: => Either[Nothing, A]): UIO[A]
- See also
- final def fromFiber[A](fiber: => Fiber[Nothing, A]): UIO[A]
- See also
- final def fromFiberM[A](fiber: UIO[Fiber[Nothing, A]]): UIO[A]
- See also
- final def fromFunction[A](f: (Any) => A): UIO[A]
- See also
- final def fromFunctionM[A](f: (Any) => UIO[A]): UIO[A]
- See also
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def halt(cause: Cause[Nothing]): UIO[Nothing]
- See also
See zio.ZIO.halt
- final def haltWith(function: (() => ZTrace) => Cause[Nothing]): UIO[Nothing]
- See also
- final def handleChildrenWith[A](uio: UIO[A])(supervisor: (IndexedSeq[Fiber[_, _]]) => UIO[_]): UIO[A]
- See also
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def identity: UIO[Any]
- See also
- final val interrupt: UIO[Nothing]
- See also
- final def interruptChildren[A](uio: UIO[A]): UIO[A]
- See also
- final def interruptible[A](uio: UIO[A]): UIO[A]
- See also
- final def interruptibleMask[A](k: (InterruptStatusRestore) => UIO[A]): UIO[A]
- See also
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def left[A](a: A): UIO[Either[A, Nothing]]
- See also
See zio.ZIO.left
- final def lock[A](executor: Executor)(uio: UIO[A]): UIO[A]
- See also
See zio.ZIO.lock
- final def mergeAll[A, B](in: Iterable[UIO[A]])(zero: B)(f: (B, A) => B): UIO[B]
- See also
See zio.ZIO.mergeAll
- final def mergeAllPar[A, B](in: Iterable[UIO[A]])(zero: B)(f: (B, A) => B): UIO[B]
- See also
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final val never: UIO[Nothing]
- See also
See zio.ZIO.never
- final val none: UIO[Option[Nothing]]
- See also
See zio.ZIO.none
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def raceAll[A](uio: UIO[A], uios: Iterable[UIO[A]]): UIO[A]
- See also
See zio.ZIO.raceAll
- final def reduceAll[A](a: UIO[A], as: Iterable[UIO[A]])(f: (A, A) => A): UIO[A]
- See also
- final def reduceAllPar[A](a: UIO[A], as: Iterable[UIO[A]])(f: (A, A) => A): UIO[A]
- See also
- def replicate[A](n: Int)(effect: UIO[A]): Iterable[UIO[A]]
- See also
- final def reserve[A, B](reservation: UIO[Reservation[Any, Nothing, A]])(use: (A) => UIO[B]): UIO[B]
- See also
See zio.ZIO.reserve
- def right[B](b: B): UIO[Either[Nothing, B]]
- See also
- final def runtime: UIO[Runtime[Any]]
- See also
See zio.ZIO.runtime
- final def sequence[A](in: Iterable[UIO[A]]): UIO[List[A]]
See zio.ZIO.sequence
- final def sequencePar[A](as: Iterable[UIO[A]]): UIO[List[A]]
- See also
- final def sequenceParN[A](n: Int)(as: Iterable[UIO[A]]): UIO[List[A]]
- def some[A](a: A): UIO[Option[A]]
- See also
- final def succeed[A](a: A): UIO[A]
- See also
See zio.ZIO.succeed
- final def superviseStatus[A](status: SuperviseStatus)(uio: UIO[A]): UIO[A]
- See also
- final def supervised[A](uio: UIO[A]): UIO[A]
- See also
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def trace: UIO[ZTrace]
- See also
See zio.ZIO.trace
- final def traced[A](uio: UIO[A]): UIO[A]
- See also
See zio.ZIO.traced
- final def traverse[A, B](in: Iterable[A])(f: (A) => UIO[B]): UIO[List[B]]
- See also
See zio.ZIO.traverse
- final def traversePar[A, B](in: Iterable[A])(f: (A) => UIO[B]): UIO[List[B]]
- See also
- final def traverseParN[A, B](n: Int)(as: Iterable[A])(fn: (A) => UIO[B]): UIO[List[B]]
- See also
- final def traverseParN_[A](n: Int)(as: Iterable[A])(f: (A) => UIO[_]): UIO[Unit]
- See also
- final def traversePar_[A](as: Iterable[A])(f: (A) => UIO[_]): UIO[Unit]
- See also
- final def traverse_[A](as: Iterable[A])(f: (A) => UIO[_]): UIO[Unit]
- See also
- final def uninterruptible[A](uio: UIO[A]): UIO[A]
- See also
- final def uninterruptibleMask[A](k: (InterruptStatusRestore) => UIO[A]): UIO[A]
- See also
- final val unit: UIO[Unit]
- See also
See zio.ZIO.unit
- final def unsandbox[A](v: IO[Cause[Nothing], A]): UIO[A]
- See also
- final def unsupervised[R, E, A](uio: UIO[A]): UIO[A]
- See also
See zio.ZIO.unsupervised.
- final def untraced[A](uio: UIO[A]): UIO[A]
- See also
See zio.ZIO.untraced
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def when(b: Boolean)(uio: UIO[_]): UIO[Unit]
- See also
See zio.ZIO.when
- final def whenCase[R, E, A](a: A)(pf: PartialFunction[A, ZIO[R, E, _]]): ZIO[R, E, Unit]
- See also
See zio.ZIO.whenCase
- final def whenCaseM[R, E, A](a: ZIO[R, E, A])(pf: PartialFunction[A, ZIO[R, E, _]]): ZIO[R, E, Unit]
- See also
- final def whenM(b: UIO[Boolean])(uio: UIO[_]): UIO[Unit]
- See also
See zio.ZIO.whenM
- final val yieldNow: UIO[Unit]
- See also
See zio.ZIO.yieldNow
Deprecated Value Members
- final def succeedLazy[A](a: => A): UIO[A]
- Annotations
- @deprecated
- Deprecated
(Since version 1.0.0) use effectTotal
- final def suspend[A](uio: => UIO[A]): UIO[A]
- Annotations
- @deprecated
- Deprecated
(Since version 1.0.0) use effectSuspendTotal
- final def suspendWith[A](p: (Platform) => UIO[A]): UIO[A]
- Annotations
- @deprecated
- Deprecated
(Since version 1.0.0) use effectSuspendTotalWith