Packages

trait ZioAsync extends Async[IO]

Self Type
ZioAsync with Sync[IO]
Linear Supertypes
Async[IO], Sync[IO], Die[IO], BifunctorMonadError[IO], BifunctorMonad[IO], Bifunctor[IO], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZioAsync
  2. Async
  3. Sync
  4. Die
  5. BifunctorMonadError
  6. BifunctorMonad
  7. Bifunctor
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def biMap[L1, R1, L2, R2](f: IO[L1, R1])(leftF: (L1) => L2, rightF: (R1) => R2): IO[L2, R2]
    Definition Classes
    Bifunctor
  2. abstract def flatMap[E1, E2 >: E1, A, B](fe1a: IO[E1, A])(fafe2b: (A) => IO[E2, B]): IO[E2, B]
    Definition Classes
    BifunctorMonad
  3. abstract def handleErrorWith[E1, A, E2](fea: IO[E1, A])(f: (E1) => IO[E2, A]): IO[E2, A]
    Definition Classes
    BifunctorMonadError
  4. abstract def leftPure[E](e: E): IO[E, Nothing]
    Definition Classes
    BifunctorMonad
  5. abstract def rightPure[A](a: A): IO[Nothing, A]
    Definition Classes
    BifunctorMonad
  6. abstract def suspend[E, A](effect: => IO[E, A]): IO[E, A]
    Definition Classes
    Sync
  7. abstract def tailRecM[E, A, A1](a: A)(f: (A) => IO[E, Either[A, A1]]): IO[E, A1]
    Definition Classes
    BifunctorMonad

Concrete 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](fEitherEA: IO[E, Either[E, A]]): IO[E, A]
    Definition Classes
    BifunctorMonad
  5. def absolveOption[E, A](feOptionA: IO[E, Option[A]], ifNone: => E): IO[E, A]
    Definition Classes
    BifunctorMonad
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def async[E, A](registerForTmm: ((Either[E, A]) => Unit) => Unit): IO[E, A]
    Definition Classes
    ZioAsync → Async
  8. def asyncF[E, A](registerForTmm: ((Either[E, A]) => Unit) => IO[Nothing, _]): IO[E, A]
    Definition Classes
    ZioAsync → Async
  9. def attempt[E, A](fea: IO[E, A]): IO[Nothing, Either[E, A]]
    Definition Classes
    BifunctorMonadError
  10. def catchLeft[E1, A, E2 >: E1](fea: IO[E1, A])(catchPf: PartialFunction[E1, IO[E2, A]]): IO[E2, A]
    Definition Classes
    BifunctorMonadError
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. def die(t: Throwable): IO[Nothing, Nothing]
    Definition Classes
    Die
  13. def effectTotal[A](block: => A): IO[Nothing, A]
    Definition Classes
    Sync
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def failUnchecked(t: Throwable): IO[Nothing, Nothing]
    Definition Classes
    Sync → Die
  17. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  18. def flatten[E1, E2 >: E1, A](fefa: IO[E1, IO[E2, A]]): IO[E2, A]
    Definition Classes
    BifunctorMonad
  19. def forever[E](fea: IO[E, _]): IO[E, Nothing]
    Definition Classes
    BifunctorMonad
  20. def fromEither[E, A](either: Either[E, A]): IO[E, A]
    Definition Classes
    BifunctorMonad
  21. def fromOption[E, A](option: Option[A], ifNone: => E): IO[E, A]
    Definition Classes
    BifunctorMonad
  22. def fromTry[A](aTry: Try[A]): IO[Throwable, A]
    Definition Classes
    BifunctorMonad
  23. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. def leftMap[L1, R, L2](f: IO[L1, R])(leftF: (L1) => L2): IO[L2, R]
    Definition Classes
    Bifunctor
  27. def map[L, R1, R2](f: IO[L, R1])(rightF: (R1) => R2): IO[L, R2]
    Definition Classes
    Bifunctor
  28. def mapError[L1, R, L2](f: IO[L1, R])(leftF: (L1) => L2): IO[L2, R]
    Definition Classes
    Bifunctor
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. def never: IO[Nothing, Nothing]
    Definition Classes
    Async
  31. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. def orDie[E, A](fea: IO[E, A])(implicit ev: <:<[E, Throwable]): IO[Nothing, A]
    Definition Classes
    Die
  34. def pure[A](a: A): IO[Nothing, A]
    Definition Classes
    BifunctorMonad
  35. def pureCatch[E, A](block: => A)(catchPf: PartialFunction[Throwable, E]): IO[E, A]
    Definition Classes
    BifunctorMonad
  36. def pureCatchException[A](block: => A): IO[Exception, A]
    Definition Classes
    BifunctorMonad
  37. def pureCatchThrowable[A](block: => A): IO[Throwable, A]
    Definition Classes
    BifunctorMonad
  38. def raiseError[E](e: E): IO[E, Nothing]
    Definition Classes
    BifunctorMonadError
  39. def recoverWith[E1, A, E2 >: E1](fea: IO[E1, A])(catchPf: PartialFunction[E1, IO[E2, A]]): IO[E2, A]
    Definition Classes
    BifunctorMonadError
  40. def refineOrDie[E1, A, E2](fea: IO[E1, A])(refinePf: PartialFunction[E1, E2])(implicit ev: <:<[E1, Throwable]): IO[E2, A]
    Definition Classes
    Die
  41. def refineToExceptionOrDie[E, A](fea: IO[E, A])(implicit ev: <:<[E, Throwable]): IO[Exception, A]
    Definition Classes
    Die
  42. def rightMap[L, R1, R2](f: IO[L, R1])(rightF: (R1) => R2): IO[L, R2]
    Definition Classes
    Bifunctor
  43. def sync[A](block: => A): IO[Nothing, A]
    Definition Classes
    Sync
  44. def syncCatch[E, A](block: => A)(catchPf: PartialFunction[Throwable, E]): IO[E, A]
    Definition Classes
    Sync
  45. def syncException[A](block: => A): IO[Exception, A]
    Definition Classes
    Sync
  46. def syncThrowable[A](block: => A): IO[Throwable, A]
    Definition Classes
    Sync
  47. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  48. def toString(): String
    Definition Classes
    AnyRef → Any
  49. def unit[E, A](fea: IO[E, A]): IO[E, Unit]
    Definition Classes
    BifunctorMonad
  50. def unit: IO[Nothing, Unit]
    Definition Classes
    BifunctorMonad
  51. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  52. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  53. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Async[IO]

Inherited from Sync[IO]

Inherited from Die[IO]

Inherited from BifunctorMonadError[IO]

Inherited from BifunctorMonad[IO]

Inherited from Bifunctor[IO]

Inherited from AnyRef

Inherited from Any

Ungrouped