object
UIO
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
def
absolve[A](v: UIO[Either[Nothing, A]]): UIO[A]
-
def
allowInterrupt: UIO[Unit]
-
def
apply[A](a: ⇒ A): UIO[A]
-
final
def
asInstanceOf[T0]: T0
-
def
bracket[A, B](acquire: UIO[A], release: (A) ⇒ UIO[Any], use: (A) ⇒ UIO[B]): UIO[B]
-
-
def
bracketExit[A, B](acquire: UIO[A], release: (A, Exit[Nothing, B]) ⇒ UIO[Any], use: (A) ⇒ UIO[B]): UIO[B]
-
-
def
checkInterruptible[A](f: (InterruptStatus) ⇒ UIO[A]): UIO[A]
-
-
def
clone(): AnyRef
-
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]]
-
-
-
def
collectAll[A](in: Array[UIO[A]])(implicit arg0: ClassTag[A]): UIO[Array[A]]
-
def
collectAll[A](in: Set[UIO[A]]): UIO[Set[A]]
-
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: Array[UIO[A]])(implicit arg0: ClassTag[A]): UIO[Array[A]]
-
def
collectAllPar[A](as: Set[UIO[A]]): UIO[Set[A]]
-
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]]
-
def
collectAllParN_[A](n: Int)(as: Iterable[UIO[A]]): UIO[Unit]
-
def
collectAllPar_[A](in: Iterable[UIO[A]]): UIO[Unit]
-
def
collectAllSuccesses[A, Collection[+Element] <: Iterable[Element]](in: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
-
def
collectAllSuccessesPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[UIO[A]])(implicit bf: zio.BuildFrom[Collection[UIO[A]], A, Collection[A]]): UIO[Collection[A]]
-
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]]
-
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]]
-
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]]
-
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]]
-
def
collectAll_[A](in: Iterable[UIO[A]]): UIO[Unit]
-
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]]
-
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]]
-
-
def
descriptorWith[A](f: (Descriptor) ⇒ UIO[A]): UIO[A]
-
def
die(t: ⇒ Throwable): UIO[Nothing]
-
def
dieMessage(message: ⇒ String): UIO[Nothing]
-
-
def
effectAsync[A](register: ((UIO[A]) ⇒ Unit) ⇒ Any, blockingOn: List[Id] = Nil): UIO[A]
-
def
effectAsyncInterrupt[A](register: ((UIO[A]) ⇒ Unit) ⇒ Either[Canceler[Any], UIO[A]], blockingOn: List[Id] = Nil): UIO[A]
-
def
effectAsyncM[A](register: ((UIO[A]) ⇒ Unit) ⇒ UIO[Any]): UIO[A]
-
def
effectAsyncMaybe[A](register: ((UIO[A]) ⇒ Unit) ⇒ Option[UIO[A]], blockingOn: List[Id] = Nil): UIO[A]
-
def
effectSuspendTotal[A](uio: ⇒ UIO[A]): UIO[A]
-
def
effectSuspendTotalWith[A](p: (Platform, Id) ⇒ UIO[A]): UIO[A]
-
def
effectTotal[A](effect: ⇒ A): UIO[A]
-
-
-
-
val
fiberId: UIO[Id]
-
def
filter[A](as: Set[A])(f: (A) ⇒ UIO[Boolean]): UIO[Set[A]]
-
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]]
-
def
filterNot[A](as: Set[A])(f: (A) ⇒ UIO[Boolean]): UIO[Set[A]]
-
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]]
-
def
filterNotPar[A](as: Set[A])(f: (A) ⇒ UIO[Boolean]): UIO[Set[A]]
-
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]]
-
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]]
-
def
finalize(): Unit
-
def
firstSuccessOf[A](uio: UIO[A], rest: Iterable[UIO[A]]): UIO[A]
-
def
flatten[A](uio: UIO[UIO[A]]): UIO[A]
-
def
foldLeft[S, A](in: Iterable[A])(zero: S)(f: (S, A) ⇒ UIO[S]): UIO[S]
-
def
foldRight[S, A](in: Iterable[A])(zero: S)(f: (A, S) ⇒ UIO[S]): UIO[S]
-
-
def
foreach[A, B](in: Option[A])(f: (A) ⇒ UIO[B]): UIO[Option[B]]
-
def
foreach[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) ⇒ UIO[(Key2, Value2)]): UIO[Map[Key2, Value2]]
-
def
foreach[A, B](in: Array[A])(f: (A) ⇒ UIO[B])(implicit arg0: ClassTag[B]): UIO[Array[B]]
-
def
foreach[A, B](in: Set[A])(f: (A) ⇒ UIO[B]): UIO[Set[B]]
-
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]]
-
-
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]]
-
def
foreachPar[A, B](as: Set[A])(fn: (A) ⇒ UIO[B]): UIO[Set[B]]
-
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]]
-
def
foreachParN_[A](n: Int)(as: Iterable[A])(f: (A) ⇒ UIO[Any]): UIO[Unit]
-
def
foreachPar_[A](as: Iterable[A])(f: (A) ⇒ UIO[Any]): UIO[Unit]
-
def
foreach_[A](as: Iterable[A])(f: (A) ⇒ UIO[Any]): UIO[Unit]
-
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]]]
-
def
forkAll_[A](as: Iterable[UIO[A]]): UIO[Unit]
-
def
fromEither[A](v: ⇒ Either[Nothing, A]): UIO[A]
-
def
fromFiber[A](fiber: ⇒ Fiber[Nothing, A]): UIO[A]
-
def
fromFiberM[A](fiber: UIO[Fiber[Nothing, A]]): UIO[A]
-
def
fromFunction[A](f: (Any) ⇒ A): UIO[A]
-
def
fromFunctionM[A](f: (Any) ⇒ UIO[A]): UIO[A]
-
final
def
getClass(): Class[_]
-
-
-
def
hashCode(): Int
-
def
identity: UIO[Any]
-
-
-
def
interruptAs(fiberId: ⇒ Id): UIO[Nothing]
-
def
interruptible[A](uio: UIO[A]): UIO[A]
-
-
final
def
isInstanceOf[T0]: Boolean
-
def
iterate[S](initial: S)(cont: (S) ⇒ Boolean)(body: (S) ⇒ UIO[S]): UIO[S]
-
def
left[A](a: ⇒ A): UIO[Either[A, Nothing]]
-
def
lock[A](executor: ⇒ Executor)(uio: UIO[A]): UIO[A]
-
def
loop[A, S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ UIO[A]): UIO[List[A]]
-
def
loop_[S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ UIO[Any]): UIO[Unit]
-
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]
-
def
mapN[A, B, C, D](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C])(f: (A, B, C) ⇒ D): UIO[D]
-
def
mapN[A, B, C](uio1: UIO[A], uio2: UIO[B])(f: (A, B) ⇒ C): UIO[C]
-
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]
-
def
mapParN[A, B, C, D](uio1: UIO[A], uio2: UIO[B], uio3: UIO[C])(f: (A, B, C) ⇒ D): UIO[D]
-
def
mapParN[A, B, C](uio1: UIO[A], uio2: UIO[B])(f: (A, B) ⇒ C): UIO[C]
-
def
memoize[A, B](f: (A) ⇒ UIO[B]): UIO[(A) ⇒ UIO[B]]
-
def
mergeAll[A, B](in: Iterable[UIO[A]])(zero: B)(f: (B, A) ⇒ B): UIO[B]
-
def
mergeAllPar[A, B](in: Iterable[UIO[A]])(zero: B)(f: (B, A) ⇒ B): UIO[B]
-
-
-
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
raceAll[A](uio: UIO[A], uios: Iterable[UIO[A]]): UIO[A]
-
def
reduceAll[A](a: UIO[A], as: Iterable[UIO[A]])(f: (A, A) ⇒ A): UIO[A]
-
def
reduceAllPar[A](a: UIO[A], as: Iterable[UIO[A]])(f: (A, A) ⇒ A): UIO[A]
-
def
replicate[A](n: Int)(effect: UIO[A]): Iterable[UIO[A]]
-
def
replicateM[A](n: Int)(effect: UIO[A]): UIO[Iterable[A]]
-
def
replicateM_[A](n: Int)(effect: UIO[A]): UIO[Unit]
-
def
reserve[A, B](reservation: UIO[Reservation[Any, Nothing, A]])(use: (A) ⇒ UIO[B]): UIO[B]
-
def
right[B](b: ⇒ B): UIO[Either[Nothing, B]]
-
-
def
some[A](a: ⇒ A): UIO[Option[A]]
-
def
succeed[A](a: ⇒ A): UIO[A]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
-
def
traced[A](uio: UIO[A]): UIO[A]
-
def
uninterruptible[A](uio: UIO[A]): UIO[A]
-
-
-
-
-
-
def
untraced[A](uio: UIO[A]): UIO[A]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
-
-
-
-
val
yieldNow: UIO[Unit]