URIO
object URIO
Value members
Concrete methods
def collectAll[R, A, Collection <: (Iterable)](in: Collection[URIO[R, A]])(implicit bf: BuildFrom[Collection[URIO[R, A]], A, Collection[A]]): URIO[R, Collection[A]]
- See also:
See [zio.ZIO.collectAll]
def collectAllPar[R, A, Collection <: (Iterable)](in: Collection[URIO[R, A]])(implicit bf: BuildFrom[Collection[URIO[R, A]], A, Collection[A]]): URIO[R, Collection[A]]
- See also:
See [zio.ZIO.collectAllPar]
def collectAllParN[R, A, Collection <: (Iterable)](n: Int)(as: Collection[URIO[R, A]])(implicit bf: BuildFrom[Collection[URIO[R, A]], A, Collection[A]]): URIO[R, Collection[A]]
- See also:
def collectAllSuccesses[R, A, Collection <: (Iterable)](in: Collection[URIO[R, A]])(implicit bf: BuildFrom[Collection[URIO[R, A]], A, Collection[A]]): URIO[R, Collection[A]]
- See also:
def collectAllSuccessesPar[R, A, Collection <: (Iterable)](as: Collection[URIO[R, A]])(implicit bf: BuildFrom[Collection[URIO[R, A]], A, Collection[A]]): URIO[R, Collection[A]]
- See also:
def collectAllSuccessesParN[R, A, Collection <: (Iterable)](n: Int)(as: Collection[URIO[R, A]])(implicit bf: BuildFrom[Collection[URIO[R, A]], A, Collection[A]]): URIO[R, Collection[A]]
- See also:
def collectAllWith[R, A, B, Collection <: (Iterable)](in: Collection[URIO[R, A]])(f: PartialFunction[A, B])(implicit bf: BuildFrom[Collection[URIO[R, A]], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
def collectAllWithPar[R, A, B, Collection <: (Iterable)](as: Collection[URIO[R, A]])(f: PartialFunction[A, B])(implicit bf: BuildFrom[Collection[URIO[R, A]], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
def collectAllWithParN[R, A, B, Collection <: (Iterable)](n: Int)(as: Collection[URIO[R, A]])(f: PartialFunction[A, B])(implicit bf: BuildFrom[Collection[URIO[R, A]], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
def collectPar[R, A, B, Collection <: (Iterable)](in: Collection[A])(f: A => ZIO[R, Option[Nothing], B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
def collectParN[R, A, B, Collection <: (Iterable)](n: Int)(in: Collection[A])(f: A => ZIO[R, Option[Nothing], B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
def effectAsyncMaybe[R, A](register: (URIO[R, A] => Unit) => Option[URIO[R, A]], blockingOn: List[Id]): URIO[R, A]
- See also:
def filterNotPar[R, A, Collection <: (Iterable)](as: Collection[A])(f: A => URIO[R, Boolean])(implicit bf: BuildFrom[Collection[A], A, Collection[A]]): URIO[R, Collection[A]]
- See also:
[[zio.ZIO.filterNotPar[R,E,A,Collection*]]
final def foreachExec[R, A, B, Collection <: (Iterable)](as: Collection[A])(exec: ExecutionStrategy)(f: A => URIO[R, B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
def foreachPar[R, A, B, Collection <: (Iterable)](as: Collection[A])(fn: A => URIO[R, B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
See [zio.ZIO.foreachPar]
def foreachPar[R, Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => URIO[R, (Key2, Value2)]): URIO[R, Map[Key2, Value2]]
- See also:
See [zio.ZIO.foreachPar]
def foreachParN[R, A, B, Collection <: (Iterable)](n: Int)(as: Collection[A])(fn: A => URIO[R, B])(implicit bf: BuildFrom[Collection[A], B, Collection[B]]): URIO[R, Collection[B]]
- See also:
def reduceAllPar[R, R1 <: R, A](a: URIO[R, A], as: Iterable[URIO[R1, A]])(f: (A, A) => A): URIO[R1, A]
- See also:
def reserve[R, A, B](reservation: URIO[R, Reservation[R, Nothing, A]])(use: A => URIO[R, B]): URIO[R, B]
- See also: