o

zio

IO

object IO

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IO
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final class BracketAcquire[E, A] extends AnyVal
  2. final class BracketAcquire_[E] extends AnyVal
  3. class BracketRelease[E, A] extends AnyRef
  4. class BracketRelease_[E] extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def absolve[E, A](v: IO[E, Either[E, A]]): IO[E, A]

    See also

    See zio.ZIO.absolve

  5. def allowInterrupt: UIO[Unit]

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

    See also

    See zio.ZIO.apply

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def bracket[E, A, B](acquire: IO[E, A], release: (A) ⇒ UIO[Any], use: (A) ⇒ IO[E, B]): IO[E, B]

    See also

    See bracket zio.ZIO

  9. def bracket[E, A](acquire: IO[E, A]): BracketAcquire[E, A]

    See also

    See bracket zio.ZIO

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

    See also

    See bracketExit zio.ZIO

  11. def bracketExit[E, A](acquire: IO[E, A]): BracketExitAcquire[Any, E, A]

    See also

    See bracketExit zio.ZIO

  12. def checkInterruptible[E, A](f: (InterruptStatus) ⇒ IO[E, A]): IO[E, A]

  13. def checkTraced[E, A](f: (TracingStatus) ⇒ IO[E, A]): IO[E, A]

    See also

    See zio.ZIO.checkTraced

  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  15. def collect[E, A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ IO[Option[E], B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): IO[E, Collection[B]]

    See also

    See zio.ZIO.collect

  16. def collectAll[E, A](in: NonEmptyChunk[IO[E, A]]): IO[E, NonEmptyChunk[A]]

  17. def collectAll[E, A](in: Set[IO[E, A]]): IO[E, Set[A]]

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

  19. def collectAllPar[E, A](as: NonEmptyChunk[IO[E, A]]): IO[E, NonEmptyChunk[A]]

  20. def collectAllPar[E, A](as: Set[IO[E, A]]): IO[E, Set[A]]

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

  22. def collectAllParN[E, A, Collection[+Element] <: Iterable[Element]](n: Int)(as: Collection[IO[E, A]])(implicit bf: zio.BuildFrom[Collection[IO[E, A]], A, Collection[A]]): IO[E, Collection[A]]

  23. def collectAllParN_[E, A](n: Int)(as: Iterable[IO[E, A]]): IO[E, Unit]

  24. def collectAllPar_[E, A](in: Iterable[IO[E, A]]): IO[E, Unit]

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

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

  27. def collectAllSuccessesParN[E, A, Collection[+Element] <: Iterable[Element]](n: Int)(as: Collection[IO[E, A]])(implicit bf: zio.BuildFrom[Collection[IO[E, A]], A, Collection[A]]): UIO[Collection[A]]

  28. def collectAllWith[E, A, B, Collection[+Element] <: Iterable[Element]](in: Collection[IO[E, A]])(f: PartialFunction[A, B])(implicit bf: zio.BuildFrom[Collection[IO[E, A]], B, Collection[B]]): IO[E, Collection[B]]

  29. def collectAllWithPar[E, A, B, Collection[+Element] <: Iterable[Element]](as: Collection[IO[E, A]])(f: PartialFunction[A, B])(implicit bf: zio.BuildFrom[Collection[IO[E, A]], B, Collection[B]]): IO[E, Collection[B]]

  30. def collectAllWithParN[E, A, B, Collection[+Element] <: Iterable[Element]](n: Int)(as: Collection[IO[E, A]])(f: PartialFunction[A, B])(implicit bf: zio.BuildFrom[Collection[IO[E, A]], B, Collection[B]]): IO[E, Collection[B]]

  31. def collectAll_[E, A](in: Iterable[IO[E, A]]): IO[E, Unit]

  32. def collectPar[E, A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ IO[Option[E], B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): IO[E, Collection[B]]

    See also

    See zio.ZIO.collectPar

  33. def collectParN[E, A, B, Collection[+Element] <: Iterable[Element]](n: Int)(in: Collection[A])(f: (A) ⇒ IO[Option[E], B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): IO[E, Collection[B]]

    See also

    See zio.ZIO.collectParN

  34. def cond[E, A](predicate: Boolean, result: ⇒ A, error: ⇒ E): IO[E, A]

    See also

    See zio.ZIO.cond

  35. def descriptor: UIO[Descriptor]

    See also

    See zio.ZIO.descriptor

  36. def descriptorWith[E, A](f: (Descriptor) ⇒ IO[E, A]): IO[E, A]

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

    See also

    See zio.ZIO.die

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

    See also

    See zio.ZIO.dieMessage

  39. def done[E, A](r: ⇒ Exit[E, A]): IO[E, A]

    See also

    See zio.ZIO.done

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

    See also

    See zio.ZIO.effect

  41. def effectAsync[E, A](register: ((IO[E, A]) ⇒ Unit) ⇒ Any, blockingOn: List[Id] = Nil): IO[E, A]

    See also

    See zio.ZIO.effectAsync

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

  43. def effectAsyncM[E, A](register: ((IO[E, A]) ⇒ Unit) ⇒ IO[E, Any]): IO[E, A]

  44. def effectAsyncMaybe[E, A](register: ((IO[E, A]) ⇒ Unit) ⇒ Option[IO[E, A]], blockingOn: List[Id] = Nil): IO[E, A]

  45. def effectSuspend[A](io: ⇒ IO[Throwable, A]): IO[Throwable, A]

  46. def effectSuspendTotal[E, A](io: ⇒ IO[E, A]): IO[E, A]

  47. def effectSuspendTotalWith[E, A](p: (Platform, Id) ⇒ IO[E, A]): IO[E, A]

  48. def effectSuspendWith[A](p: (Platform, Id) ⇒ IO[Throwable, A]): IO[Throwable, A]

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

    See also

    See zio.ZIO.effectTotal

  50. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  51. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  52. def fail[E](error: ⇒ E): IO[E, Nothing]

    See also

    See zio.ZIO.fail

  53. val fiberId: UIO[Id]

  54. def filter[E, A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) ⇒ IO[E, Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): IO[E, Collection[A]]

  55. def filterNot[E, A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) ⇒ IO[E, Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): IO[E, Collection[A]]

  56. def filterNotPar[E, A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) ⇒ IO[E, Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): IO[E, Collection[A]]

  57. def filterPar[E, A, Collection[+Element] <: Iterable[Element]](as: Collection[A])(f: (A) ⇒ IO[E, Boolean])(implicit bf: zio.BuildFrom[Collection[A], A, Collection[A]]): IO[E, Collection[A]]

  58. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  59. def firstSuccessOf[E, A](io: IO[E, A], rest: Iterable[IO[E, A]]): IO[E, A]

  60. def flatten[E, A](io: IO[E, IO[E, A]]): IO[E, A]

    See also

    See zio.ZIO.flatten

  61. def foldLeft[E, S, A](in: Iterable[A])(zero: S)(f: (S, A) ⇒ IO[E, S]): IO[E, S]

    See also

    See zio.ZIO.foldLeft

  62. def foldRight[E, S, A](in: Iterable[A])(zero: S)(f: (A, S) ⇒ IO[E, S]): IO[E, S]

    See also

    See zio.ZIO.foldRight

  63. def foreach[E, A, B](in: NonEmptyChunk[A])(f: (A) ⇒ IO[E, B]): IO[E, NonEmptyChunk[B]]

  64. def foreach[E, A, B](in: Option[A])(f: (A) ⇒ IO[E, B]): IO[E, Option[B]]

  65. def foreach[E, A, B](in: Set[A])(f: (A) ⇒ IO[E, B]): IO[E, Set[B]]

  66. def foreach[E, A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ IO[E, B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): IO[E, Collection[B]]

  67. final def foreachExec[E, A, B, Collection[+Element] <: Iterable[Element]](as: Collection[A])(exec: ExecutionStrategy)(f: (A) ⇒ IO[E, B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): IO[E, Collection[B]]

    See also

    See zio.ZIO.foreachExec

  68. def foreachPar[E, A, B](as: NonEmptyChunk[A])(fn: (A) ⇒ IO[E, B]): IO[E, NonEmptyChunk[B]]

  69. def foreachPar[E, A, B](as: Set[A])(fn: (A) ⇒ IO[E, B]): IO[E, Set[B]]

  70. def foreachPar[E, A, B, Collection[+Element] <: Iterable[Element]](as: Collection[A])(fn: (A) ⇒ IO[E, B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): IO[E, Collection[B]]

  71. def foreachParN[E, A, B, Collection[+Element] <: Iterable[Element]](n: Int)(as: Collection[A])(fn: (A) ⇒ IO[E, B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]]): IO[E, Collection[B]]

    See also

    See zio.ZIO.foreachParN

  72. def foreachParN_[E, A, B](n: Int)(as: Iterable[A])(f: (A) ⇒ IO[E, Any]): IO[E, Unit]

  73. def foreachPar_[E, A, B](as: Iterable[A])(f: (A) ⇒ IO[E, Any]): IO[E, Unit]

  74. def foreach_[E, A](as: Iterable[A])(f: (A) ⇒ IO[E, Any]): IO[E, Unit]

  75. def forkAll[E, A, Collection[+Element] <: Iterable[Element]](as: Collection[IO[E, A]])(implicit bf: zio.BuildFrom[Collection[IO[E, A]], A, Collection[A]]): UIO[Fiber[E, Collection[A]]]

    See also

    See zio.ZIO.forkAll

  76. def forkAll_[E, A](as: Iterable[IO[E, A]]): UIO[Unit]

    See also

    See zio.ZIO.forkAll_

  77. def fromEither[E, A](v: ⇒ Either[E, A]): IO[E, A]

    See also

    See zio.ZIO.fromEither

  78. def fromFiber[E, A](fiber: ⇒ Fiber[E, A]): IO[E, A]

    See also

    See zio.ZIO.fromFiber

  79. def fromFiberM[E, A](fiber: IO[E, Fiber[E, A]]): IO[E, A]

    See also

    See zio.ZIO.fromFiberM

  80. def fromFunction[A](f: (Any) ⇒ A): IO[Nothing, A]

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

  82. def fromFunctionM[E, A](f: (Any) ⇒ IO[E, A]): IO[E, A]

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

    See also

    See zio.ZIO.fromFuture

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

  85. def fromOption[A](v: ⇒ Option[A]): IO[Option[Nothing], A]

    See also

    See zio.ZIO.fromOption

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

    See also

    See zio.ZIO.fromTry

  87. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  88. def halt[E](cause: ⇒ Cause[E]): IO[E, Nothing]

    See also

    See zio.ZIO.halt

  89. def haltWith[E](function: (() ⇒ ZTrace) ⇒ Cause[E]): IO[E, Nothing]

    See also

    See zio.ZIO.haltWith

  90. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  91. def identity: IO[Nothing, Any]

  92. def ifM[E](b: IO[E, Boolean]): IfM[Any, E]

    See also

    zio.ZIO.ifM

  93. val interrupt: UIO[Nothing]

    See also

    See zio.ZIO.interrupt

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

    See also

    See zio.ZIO.interruptAs

  95. def interruptible[E, A](io: IO[E, A]): IO[E, A]

  96. def interruptibleMask[E, A](k: (InterruptStatusRestore) ⇒ IO[E, A]): IO[E, A]

  97. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  98. def iterate[E, S](initial: S)(cont: (S) ⇒ Boolean)(body: (S) ⇒ IO[E, S]): IO[E, S]

    See also

    See zio.ZIO.iterate

  99. def left[E, A](a: ⇒ A): IO[E, Either[A, Nothing]]

    See also

    See zio.ZIO.left

  100. def lock[E, A](executor: ⇒ Executor)(io: IO[E, A]): IO[E, A]

    See also

    See zio.ZIO.lock

  101. def loop[E, A, S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ IO[E, A]): IO[E, List[A]]

    See also

    See zio.ZIO.loop

  102. def loop_[E, S](initial: S)(cont: (S) ⇒ Boolean, inc: (S) ⇒ S)(body: (S) ⇒ IO[E, Any]): IO[E, Unit]

    See also

    See zio.ZIO.loop_

  103. def mapN[E, A, B, C, D, F](io1: IO[E, A], io2: IO[E, B], io3: IO[E, C], io4: IO[E, D])(f: (A, B, C, D) ⇒ F): IO[E, F]

  104. def mapN[E, A, B, C, D](io1: IO[E, A], io2: IO[E, B], io3: IO[E, C])(f: (A, B, C) ⇒ D): IO[E, D]

  105. def mapN[E, A, B, C](io1: IO[E, A], io2: IO[E, B])(f: (A, B) ⇒ C): IO[E, C]

  106. def mapParN[E, A, B, C, D, F](io1: IO[E, A], io2: IO[E, B], io3: IO[E, C], io4: IO[E, D])(f: (A, B, C, D) ⇒ F): IO[E, F]

  107. def mapParN[E, A, B, C, D](io1: IO[E, A], io2: IO[E, B], io3: IO[E, C])(f: (A, B, C) ⇒ D): IO[E, D]

  108. def mapParN[E, A, B, C](io1: IO[E, A], io2: IO[E, B])(f: (A, B) ⇒ C): IO[E, C]

  109. def memoize[E, A, B](f: (A) ⇒ IO[E, B]): UIO[(A) ⇒ IO[E, B]]

    See also

    See zio.ZIO.memoize

  110. def mergeAll[E, A, B](in: Iterable[IO[E, A]])(zero: B)(f: (B, A) ⇒ B): IO[E, B]

    See also

    See zio.ZIO.mergeAll

  111. def mergeAllPar[E, A, B](in: Iterable[IO[E, A]])(zero: B)(f: (B, A) ⇒ B): IO[E, B]

    See also

    See zio.ZIO.mergeAllPar

  112. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  113. val never: UIO[Nothing]

    See also

    See zio.ZIO.never

  114. val none: UIO[Option[Nothing]]

    See also

    See zio.ZIO.none

  115. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  116. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  117. def partition[E, A, B](in: Iterable[A])(f: (A) ⇒ IO[E, B])(implicit ev: CanFail[E]): UIO[(Iterable[E], Iterable[B])]

    See also

    See zio.ZIO.partition

  118. def partitionPar[E, A, B](in: Iterable[A])(f: (A) ⇒ IO[E, B])(implicit ev: CanFail[E]): UIO[(Iterable[E], Iterable[B])]

  119. def partitionParN[E, A, B](n: Int)(in: Iterable[A])(f: (A) ⇒ IO[E, B])(implicit ev: CanFail[E]): UIO[(Iterable[E], Iterable[B])]

  120. def raceAll[E, A](io: IO[E, A], ios: Iterable[IO[E, A]]): IO[E, A]

    See also

    See zio.ZIO.raceAll

  121. def reduceAll[E, A](a: IO[E, A], as: Iterable[IO[E, A]])(f: (A, A) ⇒ A): IO[E, A]

    See also

    See zio.ZIO.reduceAll

  122. def reduceAllPar[E, A](a: IO[E, A], as: Iterable[IO[E, A]])(f: (A, A) ⇒ A): IO[E, A]

  123. def replicate[E, A](n: Int)(effect: IO[E, A]): Iterable[IO[E, A]]

    See also

    See zio.ZIO.replicate

  124. def require[E, A](error: ⇒ E): (IO[E, Option[A]]) ⇒ IO[E, A]

    See also

    See zio.ZIO.require

  125. def reserve[E, A, B](reservation: IO[E, Reservation[Any, E, A]])(use: (A) ⇒ IO[E, B]): IO[E, B]

    See also

    See zio.ZIO.reserve

  126. def right[E, B](b: ⇒ B): IO[E, Either[Nothing, B]]

    See also

    zio.ZIO.right

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

    See also

    See zio.ZIO.runtime

  128. def some[E, A](a: ⇒ A): IO[E, Option[A]]

    See also

    zio.ZIO.some

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

    See also

    See zio.ZIO.succeed

  130. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  131. def toString(): String
    Definition Classes
    AnyRef → Any
  132. def trace: UIO[ZTrace]

    See also

    See zio.ZIO.trace

  133. def traced[E, A](zio: IO[E, A]): IO[E, A]

    See also

    See zio.ZIO.traced

  134. def uninterruptible[E, A](io: IO[E, A]): IO[E, A]

  135. def uninterruptibleMask[E, A](k: (InterruptStatusRestore) ⇒ IO[E, A]): IO[E, A]

  136. val unit: UIO[Unit]

    See also

    See zio.ZIO.unit

  137. def unless[E](b: ⇒ Boolean)(zio: ⇒ IO[E, Any]): IO[E, Unit]

    See also

    See zio.ZIO.unless

  138. def unlessM[E](b: IO[E, Boolean]): UnlessM[Any, E]

    See also

    See zio.ZIO.unlessM

  139. def unsandbox[E, A](v: IO[Cause[E], A]): IO[E, A]

    See also

    See zio.ZIO.unsandbox

  140. def untraced[E, A](zio: IO[E, A]): IO[E, A]

    See also

    See zio.ZIO.untraced

  141. def validate[E, A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ IO[E, B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], ev: CanFail[E]): IO[::[E], Collection[B]]

    See also

    See zio.ZIO.validate

  142. def validateFirst[E, A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ IO[E, B])(implicit bf: zio.BuildFrom[Collection[A], E, Collection[E]], ev: CanFail[E]): IO[Collection[E], B]

  143. def validateFirstPar[E, A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ IO[E, B])(implicit bf: zio.BuildFrom[Collection[A], E, Collection[E]], ev: CanFail[E]): IO[Collection[E], B]

  144. def validatePar[E, A, B, Collection[+Element] <: Iterable[Element]](in: Collection[A])(f: (A) ⇒ IO[E, B])(implicit bf: zio.BuildFrom[Collection[A], B, Collection[B]], ev: CanFail[E]): IO[::[E], Collection[B]]

    See also

    See zio.ZIO.validatePar

  145. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  146. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  147. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  148. def when[E](b: ⇒ Boolean)(io: ⇒ IO[E, Any]): IO[E, Unit]

    See also

    See zio.ZIO.when

  149. def whenCase[E, A](a: ⇒ A)(pf: PartialFunction[A, IO[E, Any]]): IO[E, Unit]

    See also

    See zio.ZIO.whenCase

  150. def whenCaseM[E, A](a: IO[E, A])(pf: PartialFunction[A, IO[E, Any]]): IO[E, Unit]

    See also

    See zio.ZIO.whenCaseM

  151. def whenM[E](b: IO[E, Boolean]): WhenM[Any, E]

    See also

    See zio.ZIO.whenM

  152. val yieldNow: UIO[Unit]

    See also

    See zio.ZIO.yieldNow

Inherited from AnyRef

Inherited from Any

Ungrouped