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
- def absolve[A](v: UIO[Either[Nothing, A]]): UIO[A]
- See also
See zio.ZIO.absolve
- def allowInterrupt: UIO[Unit]
- See also
- def apply[A](a: => A): UIO[A]
- See also
See zio.ZIO.apply
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def bracket[A, B](acquire: UIO[A], release: (A) => UIO[Any], use: (A) => UIO[B]): UIO[B]
- See also
See bracket zio.ZIO
- def bracket[A](acquire: UIO[A]): BracketAcquire[Any, Nothing, A]
- See also
See bracket zio.ZIO
- def bracketExit[A, B](acquire: UIO[A], release: (A, Exit[Nothing, B]) => UIO[Any], use: (A) => UIO[B]): UIO[B]
- See also
See bracketExit zio.ZIO
- def bracketExit[A](acquire: UIO[A]): BracketExitAcquire[Any, Nothing, A]
- See also
See bracketExit zio.ZIO
- def checkInterruptible[A](f: (InterruptStatus) => UIO[A]): UIO[A]
- See also
- def checkTraced[A](f: (TracingStatus) => UIO[A]): UIO[A]
- See also
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- 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]]
- See also
See zio.ZIO.collect
- def collectAll[A](in: NonEmptyChunk[UIO[A]]): UIO[NonEmptyChunk[A]]
- See also
- def collectAll[A](in: Option[UIO[A]]): UIO[Option[A]]
- See also
- def collectAll[A](in: Array[UIO[A]])(implicit arg0: ClassTag[A]): UIO[Array[A]]
- See also
- def collectAll[A](in: Set[UIO[A]]): UIO[Set[A]]
- See also
- def collectAll[A, Collection[+Element] <: Iterable[Element]](in: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
- def collectAllPar[A](as: NonEmptyChunk[UIO[A]]): UIO[NonEmptyChunk[A]]
- See also
- def collectAllPar[A](as: Array[UIO[A]])(implicit arg0: ClassTag[A]): UIO[Array[A]]
- See also
- def collectAllPar[A](as: Set[UIO[A]]): UIO[Set[A]]
- See also
- def collectAllPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
- 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]]
- See also
- def collectAllParN_[A](n: Int)(as: Iterable[UIO[A]]): UIO[Unit]
- See also
- def collectAllPar_[A](in: Iterable[UIO[A]]): UIO[Unit]
- See also
- def collectAllSuccesses[A, Collection[+Element] <: Iterable[Element]](in: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
- See also
- def collectAllSuccessesPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
- See also
- 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]]
- See also
- 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]]
- See also
- 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]]
- See also
- 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]]
- See also
- def collectAll_[A](in: Iterable[UIO[A]]): UIO[Unit]
- See also
- def collectFirst[A, B](as: Iterable[A])(f: (A) => UIO[Option[B]]): UIO[Option[B]]
- See also
- 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]]
- See also
- 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]]
- See also
- def debug(value: Any): UIO[Unit]
- See also
See zio.ZIO.debug
- def descriptor: UIO[Descriptor]
- See also
- def descriptorWith[A](f: (Descriptor) => UIO[A]): UIO[A]
- See also
- def die(t: => Throwable): UIO[Nothing]
- See also
See zio.ZIO.die
- def dieMessage(message: => String): UIO[Nothing]
- See also
- def done[A](r: => Exit[Nothing, A]): UIO[A]
- See also
See zio.ZIO.done
- def effectAsync[A](register: ((UIO[A]) => Unit) => Any, blockingOn: List[Id] = Nil): UIO[A]
- See also
- def effectAsyncInterrupt[A](register: ((UIO[A]) => Unit) => Either[Canceler[Any], UIO[A]], blockingOn: List[Id] = Nil): UIO[A]
- See also
- def effectAsyncM[A](register: ((UIO[A]) => Unit) => UIO[Any]): UIO[A]
- See also
- def effectAsyncMaybe[A](register: ((UIO[A]) => Unit) => Option[UIO[A]], blockingOn: List[Id] = Nil): UIO[A]
- See also
- def effectSuspendTotal[A](uio: => UIO[A]): UIO[A]
- See also
- def effectSuspendTotalWith[A](p: (Platform, Id) => UIO[A]): UIO[A]
- See also
- 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 executor: UIO[Executor]
- See also
See zio.ZIO.executor
- def exists[A](as: Iterable[A])(f: (A) => UIO[Boolean]): UIO[Boolean]
- See also
See zio.ZIO.exists
- val fiberId: UIO[Id]
- See also
- def filter[A](as: Set[A])(f: (A) => UIO[Boolean]): UIO[Set[A]]
- See also
- 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]]
- See also
- def filterNot[A](as: Set[A])(f: (A) => UIO[Boolean]): UIO[Set[A]]
- See also
- 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]]
- See also
- def filterNotPar[A](as: Set[A])(f: (A) => UIO[Boolean]): UIO[Set[A]]
- See also
- 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]]
- def filterPar[A](as: Set[A])(f: (A) => UIO[Boolean]): UIO[Set[A]]
- See also
- 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]]
- See also
- def firstSuccessOf[A](uio: UIO[A], rest: Iterable[UIO[A]]): UIO[A]
- See also
- def flatten[A](uio: UIO[UIO[A]]): UIO[A]
- See also
See zio.ZIO.flatten
- def foldLeft[S, A](in: Iterable[A])(zero: S)(f: (S, A) => UIO[S]): UIO[S]
- See also
See zio.ZIO.foldLeft
- def foldRight[S, A](in: Iterable[A])(zero: S)(f: (A, S) => UIO[S]): UIO[S]
- See also
- def forall[A](as: Iterable[A])(f: (A) => UIO[Boolean]): UIO[Boolean]
- See also
See zio.ZIO.forall
- def foreach[A, B](in: NonEmptyChunk[A])(f: (A) => UIO[B]): UIO[NonEmptyChunk[B]]
- See also
- def foreach[A, B](in: Option[A])(f: (A) => UIO[B]): UIO[Option[B]]
- See also
- def foreach[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => UIO[(Key2, Value2)]): UIO[Map[Key2, Value2]]
- See also
- def foreach[A, B](in: Array[A])(f: (A) => UIO[B])(implicit arg0: ClassTag[B]): UIO[Array[B]]
- See also
- def foreach[A, B](in: Set[A])(f: (A) => UIO[B]): UIO[Set[B]]
- See also
- 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]]
- 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]]
- See also
- def foreachPar[A, B](as: NonEmptyChunk[A])(fn: (A) => UIO[B]): UIO[NonEmptyChunk[B]]
- See also
- def foreachPar[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => UIO[(Key2, Value2)]): UIO[Map[Key2, Value2]]
- def foreachPar[A, B](as: Array[A])(fn: (A) => UIO[B])(implicit arg0: ClassTag[B]): UIO[Array[B]]
- See also
- def foreachPar[A, B](as: Set[A])(fn: (A) => UIO[B]): UIO[Set[B]]
- See also
- 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]]
- 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]]
- See also
- def foreachParN_[A](n: Int)(as: Iterable[A])(f: (A) => UIO[Any]): UIO[Unit]
- See also
- def foreachPar_[A](as: Iterable[A])(f: (A) => UIO[Any]): UIO[Unit]
- See also
- def foreach_[A](as: Iterable[A])(f: (A) => UIO[Any]): UIO[Unit]
- See also
- 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]]]
- See also
See zio.ZIO.forkAll
- def forkAll_[A](as: Iterable[UIO[A]]): UIO[Unit]
- See also
See zio.ZIO.forkAll_
- def fromEither[A](v: => Either[Nothing, A]): UIO[A]
- See also
- def fromFiber[A](fiber: => Fiber[Nothing, A]): UIO[A]
- See also
- def fromFiberM[A](fiber: UIO[Fiber[Nothing, A]]): UIO[A]
- See also
- def fromFunction[A](f: (Any) => A): UIO[A]
- See also
- def fromFunctionM[A](f: (Any) => UIO[A]): UIO[A]
- See also
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def halt(cause: => Cause[Nothing]): UIO[Nothing]
- See also
See zio.ZIO.halt
- def haltWith(function: (() => ZTrace) => Cause[Nothing]): UIO[Nothing]
- See also
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def identity: UIO[Any]
- See also
- def ifM(b: UIO[Boolean]): IfM[Any, Nothing]
- See also
- val interrupt: UIO[Nothing]
- See also
- def interruptAs(fiberId: => Id): UIO[Nothing]
- See also
- def interruptible[A](uio: UIO[A]): UIO[A]
- See also
- def interruptibleMask[A](k: (InterruptStatusRestore) => UIO[A]): UIO[A]
- See also
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def iterate[S](initial: S)(cont: (S) => Boolean)(body: (S) => UIO[S]): UIO[S]
- See also
See zio.ZIO.iterate
- def left[A](a: => A): UIO[Either[A, Nothing]]
- See also
See zio.ZIO.left
- def lock[A](executor: => Executor)(uio: UIO[A]): UIO[A]
- See also
See zio.ZIO.lock
- def loop[A, S](initial: S)(cont: (S) => Boolean, inc: (S) => S)(body: (S) => UIO[A]): UIO[List[A]]
- See also
See zio.ZIO.loop
- def loop_[S](initial: S)(cont: (S) => Boolean, inc: (S) => S)(body: (S) => UIO[Any]): UIO[Unit]
- See also
See zio.ZIO.loop_
- 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]
- See also
- def mapN[A, B, C, D](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C])(f: (A, B, C) => D): UIO[D]
- See also
- def mapN[A, B, C](uio1: UIO[A], uio2: UIO[B])(f: (A, B) => C): UIO[C]
- See also
- 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]
- See also
- def mapParN[A, B, C, D](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C])(f: (A, B, C) => D): UIO[D]
- See also
- def mapParN[A, B, C](uio1: UIO[A], uio2: UIO[B])(f: (A, B) => C): UIO[C]
- See also
- def memoize[A, B](f: (A) => UIO[B]): UIO[(A) => UIO[B]]
- See also
See zio.ZIO.memoize
- def mergeAll[A, B](in: Iterable[UIO[A]])(zero: B)(f: (B, A) => B): UIO[B]
- See also
See zio.ZIO.mergeAll
- 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
- val never: UIO[Nothing]
- See also
See zio.ZIO.never
- val none: UIO[Option[Nothing]]
- See also
See zio.ZIO.none
- def not(effect: UIO[Boolean]): UIO[Boolean]
- See also
See zio.ZIO.not
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def raceAll[A](uio: UIO[A], uios: Iterable[UIO[A]]): UIO[A]
- See also
See zio.ZIO.raceAll
- def reduceAll[A](a: UIO[A], as: Iterable[UIO[A]])(f: (A, A) => A): UIO[A]
- See also
- 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
- def replicateM[A](n: Int)(effect: UIO[A]): UIO[Iterable[A]]
- See also
- def replicateM_[A](n: Int)(effect: UIO[A]): UIO[Unit]
- See also
- 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
- def runtime: UIO[Runtime[Any]]
- See also
See zio.ZIO.runtime
- def some[A](a: => A): UIO[Option[A]]
- See also
- def succeed[A](a: => A): UIO[A]
- See also
See zio.ZIO.succeed
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def trace: UIO[ZTrace]
- See also
See zio.ZIO.trace
- def traced[A](uio: UIO[A]): UIO[A]
- See also
See zio.ZIO.traced
- def uninterruptible[A](uio: UIO[A]): UIO[A]
- See also
- def uninterruptibleMask[A](k: (InterruptStatusRestore) => UIO[A]): UIO[A]
- See also
- val unit: UIO[Unit]
- See also
See zio.ZIO.unit
- def unless(b: => Boolean)(zio: => UIO[Any]): UIO[Unit]
- See also
See zio.ZIO.unless
- def unlessM(b: UIO[Boolean]): UnlessM[Any, Nothing]
- See also
See zio.ZIO.unlessM
- def unsandbox[A](v: IO[Cause[Nothing], A]): UIO[A]
- See also
- def untraced[A](uio: UIO[A]): UIO[A]
- See also
See zio.ZIO.untraced
- 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 wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def when(b: => Boolean)(uio: => UIO[Any]): UIO[Unit]
- See also
See zio.ZIO.when
- def whenCase[A](a: => A)(pf: PartialFunction[A, UIO[Any]]): UIO[Unit]
- See also
See zio.ZIO.whenCase
- def whenCaseM[A](a: UIO[A])(pf: PartialFunction[A, UIO[Any]]): UIO[Unit]
- See also
- def whenM(b: UIO[Boolean]): WhenM[Any, Nothing]
- See also
See zio.ZIO.whenM
- val yieldNow: UIO[Unit]
- See also
See zio.ZIO.yieldNow