Class

fs2.interop.cats.IOAsyncInstances

EffectIO

Related Doc: package IOAsyncInstances

Permalink

class EffectIO extends Effect[IO]

Attributes
protected
Source
IOAsyncInstances.scala
Linear Supertypes
Effect[IO], Suspendable[IO], Catchable[IO], Monad[IO], Applicative[IO], Functor[IO], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EffectIO
  2. Effect
  3. Suspendable
  4. Catchable
  5. Monad
  6. Applicative
  7. Functor
  8. AnyRef
  9. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new EffectIO()

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from EffectIO to any2stringadd[EffectIO] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (EffectIO, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from EffectIO to ArrowAssoc[EffectIO] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def ap[A, B](fa: IO[A])(f: IO[(A) ⇒ B]): IO[B]

    Permalink
    Definition Classes
    Monad → Applicative
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def attempt[A](t: IO[A]): IO[Either[Throwable, A]]

    Permalink
    Definition Classes
    EffectIO → Catchable
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def delay[A](a: ⇒ A): IO[A]

    Permalink
    Definition Classes
    EffectIO → Suspendable
  11. def ensuring(cond: (EffectIO) ⇒ Boolean, msg: ⇒ Any): EffectIO

    Permalink
    Implicit information
    This member is added by an implicit conversion from EffectIO to Ensuring[EffectIO] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (EffectIO) ⇒ Boolean): EffectIO

    Permalink
    Implicit information
    This member is added by an implicit conversion from EffectIO to Ensuring[EffectIO] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): EffectIO

    Permalink
    Implicit information
    This member is added by an implicit conversion from EffectIO to Ensuring[EffectIO] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): EffectIO

    Permalink
    Implicit information
    This member is added by an implicit conversion from EffectIO to Ensuring[EffectIO] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  17. def fail[A](err: Throwable): IO[Nothing]

    Permalink
    Definition Classes
    EffectIO → Catchable
  18. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def flatMap[A, B](a: IO[A])(f: (A) ⇒ IO[B]): IO[B]

    Permalink
    Definition Classes
    EffectIO → Monad
  20. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from EffectIO to StringFormat[EffectIO] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  22. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def map[A, B](a: IO[A])(f: (A) ⇒ B): IO[B]

    Permalink
    Definition Classes
    Monad → Functor
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  28. def pure[A](a: A): IO[A]

    Permalink
    Definition Classes
    EffectIO → Applicative
  29. def suspend[A](fa: ⇒ IO[A]): IO[A]

    Permalink
    Definition Classes
    EffectIO → Suspendable
  30. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    EffectIO → AnyRef → Any
  32. def unsafeRunAsync[A](t: IO[A])(cb: (Attempt[A]) ⇒ Unit): Unit

    Permalink
    Definition Classes
    EffectIO → Effect
  33. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def [B](y: B): (EffectIO, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from EffectIO to ArrowAssoc[EffectIO] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Effect[IO]

Inherited from Suspendable[IO]

Inherited from Catchable[IO]

Inherited from Monad[IO]

Inherited from Applicative[IO]

Inherited from Functor[IO]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from EffectIO to any2stringadd[EffectIO]

Inherited by implicit conversion StringFormat from EffectIO to StringFormat[EffectIO]

Inherited by implicit conversion Ensuring from EffectIO to Ensuring[EffectIO]

Inherited by implicit conversion ArrowAssoc from EffectIO to ArrowAssoc[EffectIO]

Ungrouped