Packages

sealed abstract class IO[+A] extends IOPlatform[A]

Linear Supertypes
IOPlatform[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IO
  2. IOPlatform
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def *>[B](that: IO[B]): IO[B]
  4. def <*[B](that: IO[B]): IO[A]
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def >>[B](that: ⇒ IO[B]): IO[B]
  7. def as[B](b: B): IO[B]
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def attempt: IO[Either[Throwable, A]]
  10. def both[B](that: IO[B]): IO[(A, B)]
  11. def bothOutcome[B](that: IO[B]): IO[(OutcomeIO[A], OutcomeIO[B])]
  12. def bracket[B](use: (A) ⇒ IO[B])(release: (A) ⇒ IO[Unit]): IO[B]
  13. def bracketCase[B](use: (A) ⇒ IO[B])(release: (A, OutcomeIO[B]) ⇒ IO[Unit]): IO[B]
  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  15. def delayBy(duration: FiniteDuration): IO[A]
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def evalOn(ec: ExecutionContext): IO[A]
  19. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def flatMap[B](f: (A) ⇒ IO[B]): IO[B]
  21. def flatten[B](implicit ev: <:<[A, IO[B]]): IO[B]
  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def guarantee(finalizer: IO[Unit]): IO[A]
  24. def guaranteeCase(finalizer: (OutcomeIO[A]) ⇒ IO[Unit]): IO[A]
  25. def handleErrorWith[B >: A](f: (Throwable) ⇒ IO[B]): IO[B]
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. def map[B](f: (A) ⇒ B): IO[B]
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. def onCancel(fin: IO[Unit]): IO[A]
  33. def onCase(pf: PartialFunction[OutcomeIO[A], IO[Unit]]): IO[A]
  34. def productL[B](that: IO[B]): IO[A]
  35. def productR[B](that: IO[B]): IO[B]
  36. def race[B](that: IO[B]): IO[Either[A, B]]
  37. def raceOutcome[B](that: IO[B]): IO[Either[OutcomeIO[A], OutcomeIO[B]]]
  38. def racePair[B](that: IO[B]): IO[Either[(OutcomeIO[A], FiberIO[B]), (FiberIO[A], OutcomeIO[B])]]
  39. def start: IO[FiberIO[A]]
  40. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  41. def timeout[A2 >: A](duration: FiniteDuration): IO[A2]
  42. def timeoutTo[A2 >: A](duration: FiniteDuration, fallback: IO[A2]): IO[A2]
  43. def to[F[_]](implicit F: Effect[F]): F[A]
  44. def toString(): String
    Definition Classes
    IO → AnyRef → Any
  45. def uncancelable: IO[A]
  46. def unsafeRunAndForget()(implicit runtime: IORuntime): Unit
  47. def unsafeRunAsync(cb: (Either[Throwable, A]) ⇒ Unit)(implicit runtime: IORuntime): Unit
  48. final def unsafeRunSync()(implicit runtime: IORuntime): A
    Definition Classes
    IOPlatform
  49. final def unsafeRunTimed(limit: FiniteDuration)(implicit runtime: IORuntime): Option[A]
    Definition Classes
    IOPlatform
  50. final def unsafeToCompletableFuture()(implicit runtime: IORuntime): CompletableFuture[A]
    Definition Classes
    IOPlatform
  51. def unsafeToFuture()(implicit runtime: IORuntime): Future[A]
  52. def void: IO[Unit]
  53. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  55. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from IOPlatform[A]

Inherited from AnyRef

Inherited from Any

Ungrouped