object Task extends TaskPlatformSpecific
- Alphabetic
- By Inheritance
- Task
- TaskPlatformSpecific
- 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: Task[Either[Throwable, A]]): Task[A]
- See also
See zio.ZIO.absolve
- def allowInterrupt: UIO[Unit]
- See also
- def apply[A](a: => A): Task[A]
- See also
See zio.ZIO.apply
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def bracket[A, B](acquire: Task[A], release: (A) => UIO[Any], use: (A) => Task[B]): Task[B]
- See also
See bracket zio.ZIO
- def bracket[A](acquire: Task[A]): BracketAcquire[Any, Throwable, A]
- See also
See bracket zio.ZIO
- def bracketExit[A, B](acquire: Task[A], release: (A, Exit[Throwable, B]) => UIO[Any], use: (A) => Task[B]): Task[B]
- See also
See bracketExit zio.ZIO
- def bracketExit[A](acquire: Task[A]): BracketExitAcquire[Any, Throwable, A]
- See also
See bracketExit zio.ZIO
- def checkInterruptible[A](f: (InterruptStatus) => Task[A]): Task[A]
- See also
- def checkTraced[A](f: (TracingStatus) => Task[A]): Task[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[Throwable], B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): Task[Collection[B]]
- See also
See zio.ZIO.collect
- def collectAll[A](in: NonEmptyChunk[Task[A]]): Task[NonEmptyChunk[A]]
- See also
- def collectAll[A](in: Option[Task[A]]): Task[Option[A]]
- See also
- def collectAll[A](in: Array[Task[A]])(implicit arg0: ClassTag[A]): Task[Array[A]]
- See also
- def collectAll[A](in: Set[Task[A]]): Task[Set[A]]
- See also
- def collectAll[A, Collection[+Element] <: Iterable[Element]](in: Collection[Task[A]])(implicit bf: zio.BuildFrom[Collection[Task[A]], A, Collection[A]]): Task[Collection[A]]
- def collectAllPar[A](as: NonEmptyChunk[Task[A]]): Task[NonEmptyChunk[A]]
- See also
- def collectAllPar[A](as: Array[Task[A]])(implicit arg0: ClassTag[A]): Task[Array[A]]
- See also
- def collectAllPar[A](as: Set[Task[A]]): Task[Set[A]]
- See also
- def collectAllPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[Task[A]])(implicit bf: zio.BuildFrom[Collection[Task[A]], A, Collection[A]]): Task[Collection[A]]
- def collectAllParN[A, Collection[+Element] <: Iterable[Element]](n: Int)(as: Collection[Task[A]])(implicit bf: zio.BuildFrom[Collection[Task[A]], A, Collection[A]]): Task[Collection[A]]
- See also
- def collectAllParN_[A](n: Int)(as: Iterable[Task[A]]): Task[Unit]
- See also
- def collectAllPar_[A](in: Iterable[Task[A]]): Task[Unit]
- See also
- def collectAllSuccesses[A, Collection[+Element] <: Iterable[Element]](in: Collection[Task[A]])(implicit bf: zio.BuildFrom[Collection[Task[A]], A, Collection[A]]): UIO[Collection[A]]
- See also
- def collectAllSuccessesPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[Task[A]])(implicit bf: zio.BuildFrom[Collection[Task[A]], A, Collection[A]]): UIO[Collection[A]]
- See also
- def collectAllSuccessesParN[A, Collection[+Element] <: Iterable[Element]](n: Int)(as: Collection[Task[A]])(implicit bf: zio.BuildFrom[Collection[Task[A]], A, Collection[A]]): UIO[Collection[A]]
- See also
- def collectAllWith[A, B, Collection[+Element] <: Iterable[Element]](as: Collection[Task[A]])(f: PartialFunction[A, B])(implicit bf: zio.BuildFrom[Collection[Task[A]], B, Collection[B]]): Task[Collection[B]]
- See also
- def collectAllWithPar[A, B, Collection[+Element] <: Iterable[Element]](as: Collection[Task[A]])(f: PartialFunction[A, B])(implicit bf: zio.BuildFrom[Collection[Task[A]], B, Collection[B]]): Task[Collection[B]]
- See also
- def collectAllWithParN[A, B, Collection[+Element] <: Iterable[Element]](n: Int)(as: Collection[Task[A]])(f: PartialFunction[A, B])(implicit bf: zio.BuildFrom[Collection[Task[A]], B, Collection[B]]): Task[Collection[B]]
- See also
- def collectAll_[A](in: Iterable[Task[A]]): Task[Unit]
- See also
- def collectFirst[A, B](as: Iterable[A])(f: (A) => Task[Option[B]]): Task[Option[B]]
- See also
- def collectPar[A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) => IO[Option[Throwable], B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): Task[Collection[B]]
- See also
- def collectParN[A, B, Collection[+Element] <: Iterable[Element]](n: Int)(in: Collection[A])(f: (A) => IO[Option[Throwable], B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): Task[Collection[B]]
- See also
- def cond[A](predicate: Boolean, result: => A, error: => Throwable): Task[A]
- See also
See zio.ZIO.cond
- def debug(value: Any): UIO[Unit]
- See also
See zio.ZIO.debug
- def descriptor: UIO[Descriptor]
- See also
- def descriptorWith[A](f: (Descriptor) => Task[A]): Task[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[Throwable, A]): Task[A]
- See also
See zio.ZIO.done
- def effect[A](effect: => A): Task[A]
- See also
See zio.ZIO.effect
- def effectAsync[A](register: ((Task[A]) => Unit) => Any, blockingOn: List[Id] = Nil): Task[A]
- See also
- def effectAsyncInterrupt[A](register: ((Task[A]) => Unit) => Either[Canceler[Any], Task[A]], blockingOn: List[Id] = Nil): Task[A]
- See also
- def effectAsyncM[A](register: ((Task[A]) => Unit) => Task[Any]): Task[A]
- See also
- def effectAsyncMaybe[A](register: ((Task[A]) => Unit) => Option[Task[A]], blockingOn: List[Id] = Nil): Task[A]
- See also
- def effectAsyncWithCompletionHandler[T](op: (CompletionHandler[T, Any]) => Any): Task[T]
- Definition Classes
- TaskPlatformSpecific
- def effectSuspend[A](task: => Task[A]): Task[A]
- See also
- def effectSuspendTotal[A](task: => Task[A]): Task[A]
- See also
- def effectSuspendTotalWith[A](p: (Platform, Id) => Task[A]): Task[A]
- See also
- def effectSuspendWith[A](p: (Platform, Id) => Task[A]): Task[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) => Task[Boolean]): Task[Boolean]
- See also
See zio.ZIO.exists
- def fail(error: => Throwable): Task[Nothing]
- See also
See zio.ZIO.fail
- val fiberId: UIO[Id]
- See also
- def filter[A](as: Set[A])(f: (A) => Task[Boolean]): Task[Set[A]]
- See also
- def filter[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) => Task[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): Task[Collection[A]]
- See also
- def filterNot[A](as: Set[A])(f: (A) => Task[Boolean]): Task[Set[A]]
- See also
- def filterNot[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) => Task[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): Task[Collection[A]]
- See also
- def filterNotPar[A](as: Set[A])(f: (A) => Task[Boolean]): Task[Set[A]]
- See also
- def filterNotPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) => Task[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): Task[Collection[A]]
- def filterPar[A](as: Set[A])(f: (A) => Task[Boolean]): Task[Set[A]]
- See also
- def filterPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) => Task[Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): Task[Collection[A]]
- See also
- def firstSuccessOf[A](task: Task[A], rest: Iterable[Task[A]]): Task[A]
- See also
- def flatten[A](task: Task[Task[A]]): Task[A]
- See also
See zio.ZIO.flatten
- def foldLeft[S, A](in: Iterable[A])(zero: S)(f: (S, A) => Task[S]): Task[S]
- See also
See zio.ZIO.foldLeft
- def foldRight[S, A](in: Iterable[A])(zero: S)(f: (A, S) => Task[S]): Task[S]
- See also
- def forall[A](as: Iterable[A])(f: (A) => Task[Boolean]): Task[Boolean]
- See also
See zio.ZIO.forall
- def foreach[A, B](in: NonEmptyChunk[A])(f: (A) => Task[B]): Task[NonEmptyChunk[B]]
- See also
- def foreach[A, B](in: Option[A])(f: (A) => Task[B]): Task[Option[B]]
- See also
- def foreach[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => Task[(Key2, Value2)]): Task[Map[Key2, Value2]]
- See also
- def foreach[A, B](in: Array[A])(f: (A) => Task[B])(implicit arg0: ClassTag[B]): Task[Array[B]]
- See also
- def foreach[A, B](in: Set[A])(f: (A) => Task[B]): Task[Set[B]]
- See also
- def foreach[A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) => Task[B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): Task[Collection[B]]
- final def foreachExec[A, B, Collection[+Element] <: Iterable[Element]](as: Collection[A])(exec: ExecutionStrategy)(f: (A) => Task[B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): Task[Collection[B]]
- See also
- def foreachPar[A, B](as: NonEmptyChunk[A])(fn: (A) => Task[B]): Task[NonEmptyChunk[B]]
- See also
- def foreachPar[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) => Task[(Key2, Value2)]): Task[Map[Key2, Value2]]
- def foreachPar[A, B](as: Array[A])(fn: (A) => Task[B])(implicit arg0: ClassTag[B]): Task[Array[B]]
- See also
- def foreachPar[A, B](as: Set[A])(fn: (A) => Task[B]): Task[Set[B]]
- See also
- def foreachPar[A, B, Collection[+Element] <: Iterable[Element]](as: Collection[A])(fn: (A) => Task[B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): Task[Collection[B]]
- def foreachParN[A, B, Collection[+Element] <: Iterable[Element]](n: Int)(as: Collection[A])(fn: (A) => Task[B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): Task[Collection[B]]
- See also
- def foreachParN_[A, B](n: Int)(as: Iterable[A])(f: (A) => Task[Any]): Task[Unit]
- See also
- def foreachPar_[A, B](as: Iterable[A])(f: (A) => Task[Any]): Task[Unit]
- See also
- def foreach_[A](as: Iterable[A])(f: (A) => Task[Any]): Task[Unit]
- See also
- def forkAll[A, Collection[+Element] <: Iterable[Element]](as: Collection[Task[A]])(implicit bf: zio.BuildFrom[Collection[Task[A]], A, Collection[A]]): UIO[Fiber[Throwable, Collection[A]]]
- See also
See zio.ZIO.forkAll
- def forkAll_[A](as: Iterable[Task[A]]): UIO[Unit]
- See also
See zio.ZIO.forkAll_
- def fromCompletableFuture[A](cs: => CompletableFuture[A]): Task[A]
Alias for
formCompletionStage
for a concrete implementation of CompletionStageAlias for
formCompletionStage
for a concrete implementation of CompletionStage- Definition Classes
- TaskPlatformSpecific
- def fromCompletionStage[A](cs: => CompletionStage[A]): Task[A]
- Definition Classes
- TaskPlatformSpecific
- def fromEither[A](v: => Either[Throwable, A]): Task[A]
- See also
- def fromFiber[A](fiber: => Fiber[Throwable, A]): Task[A]
- See also
- def fromFiberM[A](fiber: Task[Fiber[Throwable, A]]): Task[A]
- See also
- def fromFunction[A](f: (Any) => A): Task[A]
- See also
- def fromFunctionFuture[A](f: (Any) => Future[A]): Task[A]
- See also
- def fromFunctionM[A](f: (Any) => Task[A]): Task[A]
- See also
- def fromFuture[A](make: (ExecutionContext) => Future[A]): Task[A]
- See also
- def fromFutureInterrupt[A](make: (ExecutionContext) => Future[A]): Task[A]
- See also
- def fromTry[A](value: => Try[A]): Task[A]
- See also
See zio.ZIO.fromTry
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def getOrFail[A](v: => Option[A]): Task[A]
- See also
- def halt(cause: => Cause[Throwable]): Task[Nothing]
- See also
See zio.ZIO.halt
- def haltWith[E <: Throwable](function: (() => ZTrace) => Cause[E]): Task[Nothing]
- See also
See zio.ZIO.haltWith
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def identity: Task[Any]
- See also
- def ifM(b: Task[Boolean]): IfM[Any, Throwable]
- See also
- val interrupt: UIO[Nothing]
- See also
- def interruptAs(fiberId: => Id): UIO[Nothing]
- See also
- def interruptible[A](task: Task[A]): Task[A]
- See also
- def interruptibleMask[A](k: (InterruptStatusRestore) => Task[A]): Task[A]
- See also
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def iterate[S](initial: S)(cont: (S) => Boolean)(body: (S) => Task[S]): Task[S]
- See also
See zio.ZIO.iterate
- def left[A](a: => A): Task[Either[A, Nothing]]
- See also
See zio.ZIO.left
- def lock[A](executor: => Executor)(task: Task[A]): Task[A]
- See also
See zio.ZIO.lock
- def loop[A, S](initial: S)(cont: (S) => Boolean, inc: (S) => S)(body: (S) => Task[A]): Task[List[A]]
- See also
See zio.ZIO.loop
- def loop_[S](initial: S)(cont: (S) => Boolean, inc: (S) => S)(body: (S) => Task[Any]): Task[Unit]
- See also
See zio.ZIO.loop_
- def mapN[A, B, C, D, F](task1: Task[A], task2: Task[B], task3: Task[C], task4: Task[D])(f: (A, B, C, D) => F): Task[F]
- See also
- def mapN[A, B, C, D](task1: Task[A], task2: Task[B], task3: Task[C])(f: (A, B, C) => D): Task[D]
- See also
- def mapN[A, B, C](task1: Task[A], task2: Task[B])(f: (A, B) => C): Task[C]
- See also
- def mapParN[A, B, C, D, F](task1: Task[A], task2: Task[B], task3: Task[C], task4: Task[D])(f: (A, B, C, D) => F): Task[F]
- See also
- def mapParN[A, B, C, D](task1: Task[A], task2: Task[B], task3: Task[C])(f: (A, B, C) => D): Task[D]
- See also
- def mapParN[A, B, C](task1: Task[A], task2: Task[B])(f: (A, B) => C): Task[C]
- See also
- def memoize[A, B](f: (A) => Task[B]): UIO[(A) => Task[B]]
- See also
See zio.ZIO.memoize
- def mergeAll[A, B](in: Iterable[Task[A]])(zero: B)(f: (B, A) => B): Task[B]
- See also
See zio.ZIO.mergeAll
- def mergeAllPar[A, B](in: Iterable[Task[A]])(zero: B)(f: (B, A) => B): Task[B]
- See also
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- val never: UIO[Nothing]
- See also
See zio.ZIO.never
- val none: Task[Option[Nothing]]
- See also
See zio.ZIO.none
- def noneOrFail(o: Option[Throwable]): Task[Unit]
- See also
- def noneOrFailWith[O](o: Option[O])(f: (O) => Throwable): Task[Unit]
- See also
- def not(effect: Task[Boolean]): Task[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 partition[A, B](in: Iterable[A])(f: (A) => Task[B]): Task[(Iterable[Throwable], Iterable[B])]
- See also
- def partitionPar[A, B](in: Iterable[A])(f: (A) => Task[B]): Task[(Iterable[Throwable], Iterable[B])]
- See also
- def partitionParN[A, B](n: Int)(in: Iterable[A])(f: (A) => Task[B]): Task[(Iterable[Throwable], Iterable[B])]
- See also
- def raceAll[A](task: Task[A], ios: Iterable[Task[A]]): Task[A]
- See also
See zio.ZIO.raceAll
- def reduceAll[A](a: Task[A], as: Iterable[Task[A]])(f: (A, A) => A): Task[A]
- See also
- def reduceAllPar[A](a: Task[A], as: Iterable[Task[A]])(f: (A, A) => A): Task[A]
- See also
- def replicate[A](n: Int)(effect: Task[A]): Iterable[Task[A]]
- See also
- def replicateM[A](n: Int)(effect: Task[A]): Task[Iterable[A]]
- See also
- def replicateM_[A](n: Int)(effect: Task[A]): Task[Unit]
- See also
- def require[A](error: => Throwable): (Task[Option[A]]) => Task[A]
- See also
See zio.ZIO.require
- def reserve[A, B](reservation: Task[Reservation[Any, Throwable, A]])(use: (A) => Task[B]): Task[B]
- See also
See zio.ZIO.reserve
- def right[B](b: => B): Task[Either[Nothing, B]]
- See also
- def runtime: UIO[Runtime[Any]]
- See also
See zio.ZIO.runtime
- def some[A](a: => A): Task[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](task: Task[A]): Task[A]
- See also
See zio.ZIO.traced
- def uninterruptible[A](task: Task[A]): Task[A]
- See also
- def uninterruptibleMask[A](k: (InterruptStatusRestore) => Task[A]): Task[A]
- See also
- val unit: UIO[Unit]
- See also
See zio.ZIO.unit
- def unless(b: => Boolean)(zio: => Task[Any]): Task[Unit]
- See also
See zio.ZIO.unless
- def unlessM(b: Task[Boolean]): UnlessM[Any, Throwable]
- See also
See zio.ZIO.unlessM
- def unsandbox[A](v: IO[Cause[Throwable], A]): Task[A]
- See also
- def untraced[A](task: Task[A]): Task[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)(task: => Task[Any]): Task[Unit]
- See also
See zio.ZIO.when
- def whenCase[A](a: => A)(pf: PartialFunction[A, Task[Any]]): Task[Unit]
- See also
See zio.ZIO.whenCase
- def whenCaseM[A](a: Task[A])(pf: PartialFunction[A, Task[Any]]): Task[Unit]
- See also
- def whenM(b: Task[Boolean]): WhenM[Any, Throwable]
- See also
See zio.ZIO.whenM
- val yieldNow: UIO[Unit]
- See also
See zio.ZIO.yieldNow