Object

zio

Task

Related Doc: package zio

Permalink

object Task extends TaskPlatformSpecific

Linear Supertypes
TaskPlatformSpecific, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Task
  2. TaskPlatformSpecific
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def absolve[A](v: Task[Either[Throwable, A]]): Task[A]

    Permalink

    See also

    See zio.ZIO.absolve

  5. def allowInterrupt: UIO[Unit]

    Permalink

  6. def apply[A](a: ⇒ A): Task[A]

    Permalink

    See also

    See zio.ZIO.apply

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def bracket[A, B](acquire: Task[A], release: (A) ⇒ UIO[Any], use: (A) ⇒ Task[B]): Task[B]

    Permalink

    See also

    See bracket zio.ZIO

  9. def bracket[A](acquire: Task[A]): BracketAcquire[Any, Throwable, A]

    Permalink

    See also

    See bracket zio.ZIO

  10. def bracketExit[A, B](acquire: Task[A], release: (A, Exit[Throwable, B]) ⇒ UIO[Any], use: (A) ⇒ Task[B]): Task[B]

    Permalink

    See also

    See bracketExit zio.ZIO

  11. def bracketExit[A](acquire: Task[A]): BracketExitAcquire[Any, Throwable, A]

    Permalink

    See also

    See bracketExit zio.ZIO

  12. def checkInterruptible[A](f: (InterruptStatus) ⇒ Task[A]): Task[A]

    Permalink

  13. def checkTraced[A](f: (TracingStatus) ⇒ Task[A]): Task[A]

    Permalink

    See also

    See zio.ZIO.checkTraced

  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. 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]]

    Permalink

    See also

    See zio.ZIO.collect

  16. def collectAll[A](in: NonEmptyChunk[Task[A]]): Task[NonEmptyChunk[A]]

    Permalink

  17. def collectAll[A](in: Option[Task[A]]): Task[Option[A]]

    Permalink

  18. def collectAll[A](in: Array[Task[A]])(implicit arg0: ClassTag[A]): Task[Array[A]]

    Permalink

  19. def collectAll[A](in: Set[Task[A]]): Task[Set[A]]

    Permalink

  20. def collectAll[A, Collection[+Element] <: Iterable[Element]](in: Collection[Task[A]])(implicit bf: zio.BuildFrom[Collection[Task[A]], A, Collection[A]]): Task[Collection[A]]

    Permalink

  21. def collectAllPar[A](as: NonEmptyChunk[Task[A]]): Task[NonEmptyChunk[A]]

    Permalink

  22. def collectAllPar[A](as: Array[Task[A]])(implicit arg0: ClassTag[A]): Task[Array[A]]

    Permalink

  23. def collectAllPar[A](as: Set[Task[A]]): Task[Set[A]]

    Permalink

  24. def collectAllPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[Task[A]])(implicit bf: zio.BuildFrom[Collection[Task[A]], A, Collection[A]]): Task[Collection[A]]

    Permalink

  25. 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]]

    Permalink

  26. def collectAllParN_[A](n: Int)(as: Iterable[Task[A]]): Task[Unit]

    Permalink

  27. def collectAllPar_[A](in: Iterable[Task[A]]): Task[Unit]

    Permalink

  28. def collectAllSuccesses[A, Collection[+Element] <: Iterable[Element]](in: Collection[Task[A]])(implicit bf: zio.BuildFrom[Collection[Task[A]], A, Collection[A]]): UIO[Collection[A]]

    Permalink

  29. def collectAllSuccessesPar[A, Collection[+Element] <: Iterable[Element]](as: Collection[Task[A]])(implicit bf: zio.BuildFrom[Collection[Task[A]], A, Collection[A]]): UIO[Collection[A]]

    Permalink

  30. 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]]

    Permalink

  31. 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]]

    Permalink

  32. 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]]

    Permalink

  33. 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]]

    Permalink

  34. def collectAll_[A](in: Iterable[Task[A]]): Task[Unit]

    Permalink

  35. def collectFirst[A, B](as: Iterable[A])(f: (A) ⇒ Task[Option[B]]): Task[Option[B]]

    Permalink

    See also

    See zio.ZIO.collectFirst

  36. 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]]

    Permalink

    See also

    See zio.ZIO.collectPar

  37. 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]]

    Permalink

    See also

    See zio.ZIO.collectParN

  38. def cond[A](predicate: Boolean, result: ⇒ A, error: ⇒ Throwable): Task[A]

    Permalink

    See also

    See zio.ZIO.cond

  39. def debug(value: Any): UIO[Unit]

    Permalink

    See also

    See zio.ZIO.debug

  40. def descriptor: UIO[Descriptor]

    Permalink

    See also

    See zio.ZIO.descriptor

  41. def descriptorWith[A](f: (Descriptor) ⇒ Task[A]): Task[A]

    Permalink

  42. def die(t: ⇒ Throwable): UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.die

  43. def dieMessage(message: ⇒ String): UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.dieMessage

  44. def done[A](r: ⇒ Exit[Throwable, A]): Task[A]

    Permalink

    See also

    See zio.ZIO.done

  45. def effect[A](effect: ⇒ A): Task[A]

    Permalink

    See also

    See zio.ZIO.effect

  46. def effectAsync[A](register: ((Task[A]) ⇒ Unit) ⇒ Any, blockingOn: List[Id] = Nil): Task[A]

    Permalink

    See also

    See zio.ZIO.effectAsync

  47. def effectAsyncInterrupt[A](register: ((Task[A]) ⇒ Unit) ⇒ Either[Canceler[Any], Task[A]], blockingOn: List[Id] = Nil): Task[A]

    Permalink

  48. def effectAsyncM[A](register: ((Task[A]) ⇒ Unit) ⇒ Task[Any]): Task[A]

    Permalink

    See also

    See zio.ZIO.effectAsyncM

  49. def effectAsyncMaybe[A](register: ((Task[A]) ⇒ Unit) ⇒ Option[Task[A]], blockingOn: List[Id] = Nil): Task[A]

    Permalink

  50. def effectAsyncWithCompletionHandler[T](op: (CompletionHandler[T, Any]) ⇒ Any): Task[T]

    Permalink
    Definition Classes
    TaskPlatformSpecific
  51. def effectSuspend[A](task: ⇒ Task[A]): Task[A]

    Permalink

    See also

    See zio.RIO.effectSuspend

  52. def effectSuspendTotal[A](task: ⇒ Task[A]): Task[A]

    Permalink

  53. def effectSuspendTotalWith[A](p: (Platform, Id) ⇒ Task[A]): Task[A]

    Permalink

  54. def effectSuspendWith[A](p: (Platform, Id) ⇒ Task[A]): Task[A]

    Permalink

  55. def effectTotal[A](effect: ⇒ A): UIO[A]

    Permalink

    See also

    See zio.ZIO.effectTotal

  56. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  57. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  58. def executor: UIO[Executor]

    Permalink

    See also

    See zio.ZIO.executor

  59. def exists[A](as: Iterable[A])(f: (A) ⇒ Task[Boolean]): Task[Boolean]

    Permalink

    See also

    See zio.ZIO.exists

  60. def fail(error: ⇒ Throwable): Task[Nothing]

    Permalink

    See also

    See zio.ZIO.fail

  61. val fiberId: UIO[Id]

    Permalink

    See also

    zio.ZIO.fiberId

  62. def filter[A](as: Set[A])(f: (A) ⇒ Task[Boolean]): Task[Set[A]]

    Permalink

  63. 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]]

    Permalink

  64. def filterNot[A](as: Set[A])(f: (A) ⇒ Task[Boolean]): Task[Set[A]]

    Permalink

  65. 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]]

    Permalink

  66. def filterNotPar[A](as: Set[A])(f: (A) ⇒ Task[Boolean]): Task[Set[A]]

    Permalink

  67. 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]]

    Permalink

  68. def filterPar[A](as: Set[A])(f: (A) ⇒ Task[Boolean]): Task[Set[A]]

    Permalink

  69. 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]]

    Permalink

  70. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  71. def firstSuccessOf[A](task: Task[A], rest: Iterable[Task[A]]): Task[A]

    Permalink

  72. def flatten[A](task: Task[Task[A]]): Task[A]

    Permalink

    See also

    See zio.ZIO.flatten

  73. def foldLeft[S, A](in: Iterable[A])(zero: S)(f: (S, A) ⇒ Task[S]): Task[S]

    Permalink

    See also

    See zio.ZIO.foldLeft

  74. def foldRight[S, A](in: Iterable[A])(zero: S)(f: (A, S) ⇒ Task[S]): Task[S]

    Permalink

    See also

    See zio.ZIO.foldRight

  75. def forall[A](as: Iterable[A])(f: (A) ⇒ Task[Boolean]): Task[Boolean]

    Permalink

    See also

    See zio.ZIO.forall

  76. def foreach[A, B](in: NonEmptyChunk[A])(f: (A) ⇒ Task[B]): Task[NonEmptyChunk[B]]

    Permalink

  77. def foreach[A, B](in: Option[A])(f: (A) ⇒ Task[B]): Task[Option[B]]

    Permalink

  78. def foreach[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) ⇒ Task[(Key2, Value2)]): Task[Map[Key2, Value2]]

    Permalink

  79. def foreach[A, B](in: Array[A])(f: (A) ⇒ Task[B])(implicit arg0: ClassTag[B]): Task[Array[B]]

    Permalink

  80. def foreach[A, B](in: Set[A])(f: (A) ⇒ Task[B]): Task[Set[B]]

    Permalink

  81. 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]]

    Permalink

  82. 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]]

    Permalink

    See also

    See zio.ZIO.foreachExec

  83. def foreachPar[A, B](as: NonEmptyChunk[A])(fn: (A) ⇒ Task[B]): Task[NonEmptyChunk[B]]

    Permalink

  84. def foreachPar[Key, Key2, Value, Value2](map: Map[Key, Value])(f: (Key, Value) ⇒ Task[(Key2, Value2)]): Task[Map[Key2, Value2]]

    Permalink

  85. def foreachPar[A, B](as: Array[A])(fn: (A) ⇒ Task[B])(implicit arg0: ClassTag[B]): Task[Array[B]]

    Permalink

  86. def foreachPar[A, B](as: Set[A])(fn: (A) ⇒ Task[B]): Task[Set[B]]

    Permalink

  87. 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]]

    Permalink

  88. 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]]

    Permalink

    See also

    See zio.ZIO.foreachParN

  89. def foreachParN_[A, B](n: Int)(as: Iterable[A])(f: (A) ⇒ Task[Any]): Task[Unit]

    Permalink

    See also

    See zio.ZIO.foreachParN_

  90. def foreachPar_[A, B](as: Iterable[A])(f: (A) ⇒ Task[Any]): Task[Unit]

    Permalink

  91. def foreach_[A](as: Iterable[A])(f: (A) ⇒ Task[Any]): Task[Unit]

    Permalink

  92. 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]]]

    Permalink

    See also

    See zio.ZIO.forkAll

  93. def forkAll_[A](as: Iterable[Task[A]]): UIO[Unit]

    Permalink

    See also

    See zio.ZIO.forkAll_

  94. def fromCompletableFuture[A](cs: ⇒ CompletableFuture[A]): Task[A]

    Permalink

    Alias for formCompletionStage for a concrete implementation of CompletionStage

    Alias for formCompletionStage for a concrete implementation of CompletionStage

    Definition Classes
    TaskPlatformSpecific
  95. def fromCompletionStage[A](cs: ⇒ CompletionStage[A]): Task[A]

    Permalink
    Definition Classes
    TaskPlatformSpecific
  96. def fromEither[A](v: ⇒ Either[Throwable, A]): Task[A]

    Permalink

    See also

    See zio.ZIO.fromEither

  97. def fromFiber[A](fiber: ⇒ Fiber[Throwable, A]): Task[A]

    Permalink

    See also

    See zio.ZIO.fromFiber

  98. def fromFiberM[A](fiber: Task[Fiber[Throwable, A]]): Task[A]

    Permalink

    See also

    See zio.ZIO.fromFiberM

  99. def fromFunction[A](f: (Any) ⇒ A): Task[A]

    Permalink

  100. def fromFunctionFuture[A](f: (Any) ⇒ Future[A]): Task[A]

    Permalink

  101. def fromFunctionM[A](f: (Any) ⇒ Task[A]): Task[A]

    Permalink

  102. def fromFuture[A](make: (ExecutionContext) ⇒ Future[A]): Task[A]

    Permalink

    See also

    See zio.ZIO.fromFuture

  103. def fromFutureInterrupt[A](make: (ExecutionContext) ⇒ Future[A]): Task[A]

    Permalink

  104. def fromTry[A](value: ⇒ Try[A]): Task[A]

    Permalink

    See also

    See zio.ZIO.fromTry

  105. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  106. final def getOrFail[A](v: ⇒ Option[A]): Task[A]

    Permalink

    See also

    See zio.ZIO.getOrFail

  107. def halt(cause: ⇒ Cause[Throwable]): Task[Nothing]

    Permalink

    See also

    See zio.ZIO.halt

  108. def haltWith[E <: Throwable](function: (() ⇒ ZTrace) ⇒ Cause[E]): Task[Nothing]

    Permalink

    See also

    See zio.ZIO.haltWith

  109. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  110. def identity: Task[Any]

    Permalink

  111. def ifM(b: Task[Boolean]): IfM[Any, Throwable]

    Permalink

    See also

    zio.ZIO.ifM

  112. val interrupt: UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.interrupt

  113. def interruptAs(fiberId: ⇒ Id): UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.interruptAs

  114. def interruptible[A](task: Task[A]): Task[A]

    Permalink

    See also

    See zio.ZIO.interruptible

  115. def interruptibleMask[A](k: (InterruptStatusRestore) ⇒ Task[A]): Task[A]

    Permalink

  116. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  117. def iterate[S](initial: S)(cont: (S) ⇒ Boolean)(body: (S) ⇒ Task[S]): Task[S]

    Permalink

    See also

    See zio.ZIO.iterate

  118. def left[A](a: ⇒ A): Task[Either[A, Nothing]]

    Permalink

    See also

    See zio.ZIO.left

  119. def lock[A](executor: ⇒ Executor)(task: Task[A]): Task[A]

    Permalink

    See also

    See zio.ZIO.lock

  120. def loop[A, S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ Task[A]): Task[List[A]]

    Permalink

    See also

    See zio.ZIO.loop

  121. def loop_[S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ Task[Any]): Task[Unit]

    Permalink

    See also

    See zio.ZIO.loop_

  122. 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]

    Permalink

  123. def mapN[A, B, C, D](task1: Task[A], task2: Task[B], task3: Task[C])(f: (A, B, C) ⇒ D): Task[D]

    Permalink

  124. def mapN[A, B, C](task1: Task[A], task2: Task[B])(f: (A, B) ⇒ C): Task[C]

    Permalink

  125. 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]

    Permalink

  126. def mapParN[A, B, C, D](task1: Task[A], task2: Task[B], task3: Task[C])(f: (A, B, C) ⇒ D): Task[D]

    Permalink

  127. def mapParN[A, B, C](task1: Task[A], task2: Task[B])(f: (A, B) ⇒ C): Task[C]

    Permalink

  128. def memoize[A, B](f: (A) ⇒ Task[B]): UIO[(A) ⇒ Task[B]]

    Permalink

    See also

    See zio.ZIO.memoize

  129. def mergeAll[A, B](in: Iterable[Task[A]])(zero: B)(f: (B, A) ⇒ B): Task[B]

    Permalink

    See also

    See zio.ZIO.mergeAll

  130. def mergeAllPar[A, B](in: Iterable[Task[A]])(zero: B)(f: (B, A) ⇒ B): Task[B]

    Permalink

    See also

    See zio.ZIO.mergeAllPar

  131. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  132. val never: UIO[Nothing]

    Permalink

    See also

    See zio.ZIO.never

  133. val none: Task[Option[Nothing]]

    Permalink

    See also

    See zio.ZIO.none

  134. def noneOrFail(o: Option[Throwable]): Task[Unit]

    Permalink

    See also

    See zio.ZIO.noneOrFail

  135. def noneOrFailWith[O](o: Option[O])(f: (O) ⇒ Throwable): Task[Unit]

    Permalink

  136. def not(effect: Task[Boolean]): Task[Boolean]

    Permalink

    See also

    See zio.ZIO.not

  137. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  138. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  139. def partition[A, B](in: Iterable[A])(f: (A) ⇒ Task[B]): Task[(Iterable[Throwable], Iterable[B])]

    Permalink

    See also

    See zio.ZIO.partition

  140. def partitionPar[A, B](in: Iterable[A])(f: (A) ⇒ Task[B]): Task[(Iterable[Throwable], Iterable[B])]

    Permalink

    See also

    See zio.ZIO.partitionPar

  141. def partitionParN[A, B](n: Int)(in: Iterable[A])(f: (A) ⇒ Task[B]): Task[(Iterable[Throwable], Iterable[B])]

    Permalink

    See also

    See zio.ZIO.partitionParN

  142. def raceAll[A](task: Task[A], ios: Iterable[Task[A]]): Task[A]

    Permalink

    See also

    See zio.ZIO.raceAll

  143. def reduceAll[A](a: Task[A], as: Iterable[Task[A]])(f: (A, A) ⇒ A): Task[A]

    Permalink

    See also

    See zio.ZIO.reduceAll

  144. def reduceAllPar[A](a: Task[A], as: Iterable[Task[A]])(f: (A, A) ⇒ A): Task[A]

    Permalink

    See also

    See zio.ZIO.reduceAllPar

  145. def replicate[A](n: Int)(effect: Task[A]): Iterable[Task[A]]

    Permalink

    See also

    See zio.ZIO.replicate

  146. def replicateM[A](n: Int)(effect: Task[A]): Task[Iterable[A]]

    Permalink

    See also

    See zio.ZIO.replicateM

  147. def replicateM_[A](n: Int)(effect: Task[A]): Task[Unit]

    Permalink

    See also

    See zio.ZIO.replicateM_

  148. def require[A](error: ⇒ Throwable): (Task[Option[A]]) ⇒ Task[A]

    Permalink

    See also

    See zio.ZIO.require

  149. def reserve[A, B](reservation: Task[Reservation[Any, Throwable, A]])(use: (A) ⇒ Task[B]): Task[B]

    Permalink

    See also

    See zio.ZIO.reserve

  150. def right[B](b: ⇒ B): Task[Either[Nothing, B]]

    Permalink

    See also

    zio.ZIO.right

  151. def runtime: UIO[Runtime[Any]]

    Permalink

    See also

    See zio.ZIO.runtime

  152. def some[A](a: ⇒ A): Task[Option[A]]

    Permalink

    See also

    zio.ZIO.some

  153. def succeed[A](a: ⇒ A): UIO[A]

    Permalink

    See also

    See zio.ZIO.succeed

  154. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  155. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  156. def trace: UIO[ZTrace]

    Permalink

    See also

    See zio.ZIO.trace

  157. def traced[A](task: Task[A]): Task[A]

    Permalink

    See also

    See zio.ZIO.traced

  158. def uninterruptible[A](task: Task[A]): Task[A]

    Permalink

  159. def uninterruptibleMask[A](k: (InterruptStatusRestore) ⇒ Task[A]): Task[A]

    Permalink

  160. val unit: UIO[Unit]

    Permalink

    See also

    See zio.ZIO.unit

  161. def unless(b: ⇒ Boolean)(zio: ⇒ Task[Any]): Task[Unit]

    Permalink

    See also

    See zio.ZIO.unless

  162. def unlessM(b: Task[Boolean]): UnlessM[Any, Throwable]

    Permalink

    See also

    See zio.ZIO.unlessM

  163. def unsandbox[A](v: IO[Cause[Throwable], A]): Task[A]

    Permalink

  164. def untraced[A](task: Task[A]): Task[A]

    Permalink

    See also

    See zio.ZIO.untraced

  165. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  166. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  167. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  168. def when(b: ⇒ Boolean)(task: ⇒ Task[Any]): Task[Unit]

    Permalink

    See also

    See zio.ZIO.when

  169. def whenCase[A](a: ⇒ A)(pf: PartialFunction[A, Task[Any]]): Task[Unit]

    Permalink

    See also

    See zio.ZIO.whenCase

  170. def whenCaseM[A](a: Task[A])(pf: PartialFunction[A, Task[Any]]): Task[Unit]

    Permalink

    See also

    See zio.ZIO.whenCaseM

  171. def whenM(b: Task[Boolean]): WhenM[Any, Throwable]

    Permalink

    See also

    See zio.ZIO.whenM

  172. val yieldNow: UIO[Unit]

    Permalink

    See also

    See zio.ZIO.yieldNow

Inherited from TaskPlatformSpecific

Inherited from AnyRef

Inherited from Any

Ungrouped