Packages

class AsyncOps[FR[-_, +_, +_], -R, +E, +A] extends IOOps[FR, R, E, A]

Linear Supertypes
IOOps[FR, R, E, A], PanicOps[FR, R, E, A], BracketOps[FR, R, E, A], ErrorOps[FR, R, E, A], ApplicativeErrorOps[FR, R, E, A], GuaranteeOps[FR, R, E, A], ApplicativeOps[FR, R, E, A], FunctorOps[FR, R, E, A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AsyncOps
  2. IOOps
  3. PanicOps
  4. BracketOps
  5. ErrorOps
  6. ApplicativeErrorOps
  7. GuaranteeOps
  8. ApplicativeOps
  9. FunctorOps
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new AsyncOps(r: FR[R, E, A])(implicit F: Async3[FR])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def *>[R1 <: R, E1 >: E, B](f0: => FR[R1, E1, B]): FR[R1, E1, B]

    execute two operations in order, return result of second operation

    execute two operations in order, return result of second operation

    Definition Classes
    ApplicativeOps
    Annotations
    @inline()
  4. final def <*[R1 <: R, E1 >: E, B](f0: => FR[R1, E1, B]): FR[R1, E1, A]

    execute two operations in order, same as *>, but return result of first operation

    execute two operations in order, same as *>, but return result of first operation

    Definition Classes
    ApplicativeOps
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. implicit val F: Async3[FR]
    Attributes
    protected[this]
    Definition Classes
    AsyncOpsIOOpsPanicOpsBracketOpsErrorOpsApplicativeErrorOpsGuaranteeOpsApplicativeOpsFunctorOps
  7. final def as[B](b: => B): FR[R, E, B]
    Definition Classes
    FunctorOps
    Annotations
    @inline()
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. final def attempt: FR[R, Nothing, Either[E, A]]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  10. final def bimap[E2, B](f: (E) => E2, g: (A) => B): FR[R, E2, B]
    Definition Classes
    ApplicativeErrorOps
    Annotations
    @inline()
  11. final def bracket[R1 <: R, E1 >: E, B](release: (A) => FR[R1, Nothing, Unit])(use: (A) => FR[R1, E1, B]): FR[R1, E1, B]
    Definition Classes
    BracketOps
    Annotations
    @inline()
  12. final def bracketAuto[R1 <: R, E1 >: E, B](use: (A) => FR[R1, E1, B])(implicit ev: <:<[A, AutoCloseable]): FR[R1, E1, B]
    Definition Classes
    IOOps
    Annotations
    @inline()
  13. final def bracketCase[R1 <: R, E1 >: E, B](release: (A, Exit[E1, B]) => FR[R1, Nothing, Unit])(use: (A) => FR[R1, E1, B]): FR[R1, E1, B]
    Definition Classes
    BracketOps
    Annotations
    @inline()
  14. final def bracketOnFailure[R1 <: R, E1 >: E, B](cleanupOnFailure: (A, Failure[E1]) => FR[R1, Nothing, Unit])(use: (A) => FR[R1, E1, B]): FR[R1, E1, B]
    Definition Classes
    BracketOps
    Annotations
    @inline()
  15. final def catchAll[R1 <: R, E2, A2 >: A](h: (E) => FR[R1, E2, A2]): FR[R1, E2, A2]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  16. final def catchSome[R1 <: R, E1 >: E, A2 >: A](h: PartialFunction[E, FR[R1, E1, A2]]): FR[R1, E1, A2]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  17. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  21. final def flatMap[R1 <: R, E1 >: E, B](f0: (A) => FR[R1, E1, B]): FR[R1, E1, B]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  22. final def flatten[R1 <: R, E1 >: E, A1](implicit ev: <:<[A, FR[R1, E1, A1]]): FR[R1, E1, A1]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  23. final def flip: FR[R, A, E]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  24. final def forever: FR[R, E, Nothing]
    Definition Classes
    ApplicativeOps
    Annotations
    @inline()
  25. final def fromEither[R1 <: R, E1 >: E, A1](implicit ev: <:<[A, Either[E1, A1]]): FR[R1, E1, A1]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  26. final def fromOption[R1 <: R, E1 >: E, A1](errorOnNone: => E1)(implicit ev1: <:<[A, Option[A1]]): FR[R1, E1, A1]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  27. final def fromOptionF[R1 <: R, E1 >: E, B](fallbackOnNone: => FR[R1, E1, B])(implicit ev: <:<[A, Option[B]]): FR[R1, E1, B]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  28. final def fromOptionOr[B](valueOnNone: => B)(implicit ev: <:<[A, Option[B]]): FR[R, E, B]
    Definition Classes
    FunctorOps
    Annotations
    @inline()
  29. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. final def guarantee[R1 <: R](cleanup: FR[R1, Nothing, Unit]): FR[R1, E, A]
    Definition Classes
    GuaranteeOps
    Annotations
    @inline()
  31. final def guaranteeCase[R1 <: R](cleanup: (Exit[E, A]) => FR[R1, Nothing, Unit]): FR[R1, E, A]
    Definition Classes
    BracketOps
    Annotations
    @inline()
  32. final def guaranteeExceptOnInterrupt[R1 <: R](cleanupOnNonInterruption: (Either[Termination, Either[Error[E], Success[A]]]) => FR[R1, Nothing, Unit]): FR[R1, E, A]
    Definition Classes
    BracketOps
    Annotations
    @inline()
  33. final def guaranteeOnFailure[R1 <: R](cleanupOnFailure: (Failure[E]) => FR[R1, Nothing, Unit]): FR[R1, E, A]
    Definition Classes
    BracketOps
    Annotations
    @inline()
  34. final def guaranteeOnInterrupt[R1 <: R](cleanupOnInterruption: (Interruption) => FR[R1, Nothing, Unit]): FR[R1, E, A]
    Definition Classes
    BracketOps
    Annotations
    @inline()
  35. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  36. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  37. final def iterateUntil(p: (A) => Boolean): FR[R, E, A]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  38. final def iterateWhile(p: (A) => Boolean): FR[R, E, A]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  39. final def leftFlatMap[R1 <: R, E2](f: (E) => FR[R1, Nothing, E2]): FR[R1, E2, A]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  40. final def leftMap[E2](f: (E) => E2): FR[R, E2, A]
    Definition Classes
    ApplicativeErrorOps
    Annotations
    @inline()
  41. final def leftMap2[R1 <: R, E2, A1 >: A, E3](r2: => FR[R1, E2, A1])(f: (E, E2) => E3): FR[R1, E3, A1]
    Definition Classes
    ApplicativeErrorOps
    Annotations
    @inline()
  42. final def map[B](f: (A) => B): FR[R, E, B]
    Definition Classes
    FunctorOps
    Annotations
    @inline()
  43. final def map2[R1 <: R, E1 >: E, B, C](r2: => FR[R1, E1, B])(f: (A, B) => C): FR[R1, E1, C]

    execute two operations in order, map their results

    execute two operations in order, map their results

    Definition Classes
    ApplicativeOps
    Annotations
    @inline()
  44. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  45. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  46. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  47. final def orElse[R1 <: R, E2, A1 >: A](r2: => FR[R1, E2, A1]): FR[R1, E2, A1]
    Definition Classes
    ApplicativeErrorOps
    Annotations
    @inline()
  48. final def orTerminate(implicit ev: <:<[E, Throwable]): FR[R, Nothing, A]

    Convert Throwable typed error into a defect

    Convert Throwable typed error into a defect

    Definition Classes
    PanicOps
    Annotations
    @inline()
  49. val r: FR[R, E, A]
    Attributes
    protected[this]
    Definition Classes
    AsyncOpsIOOpsPanicOpsBracketOpsErrorOpsApplicativeErrorOpsGuaranteeOpsApplicativeOpsFunctorOps
  50. final def race[R1 <: R, E1 >: E, A1 >: A](that: FR[R1, E1, A1]): FR[R1, E1, A1]
    Annotations
    @inline()
  51. final def racePairUnsafe[R1 <: R, E1 >: E, A1 >: A](that: FR[R1, E1, A1]): FR[R1, E1, Either[(Exit[E1, A], Fiber3[FR, E1, A1]), (Fiber3[FR, E1, A], Exit[E1, A1])]]
    Annotations
    @inline()
  52. final def redeem[R1 <: R, E2, B](err: (E) => FR[R1, E2, B], succ: (A) => FR[R1, E2, B]): FR[R1, E2, B]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  53. final def redeemPure[B](err: (E) => B, succ: (A) => B): FR[R, Nothing, B]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  54. final def retryUntil(f: (E) => Boolean): FR[R, E, A]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  55. final def retryUntilF[R1 <: R](f: (E) => FR[R1, Nothing, Boolean]): FR[R1, E, A]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  56. final def retryWhile(f: (E) => Boolean): FR[R, E, A]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  57. final def retryWhileF[R1 <: R](f: (E) => FR[R1, Nothing, Boolean]): FR[R1, E, A]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  58. final def sandbox: FR[R, Failure[E], A]
    Definition Classes
    PanicOps
    Annotations
    @inline()
  59. final def sandboxExit: FR[R, Nothing, Exit[E, A]]
    Definition Classes
    PanicOps
    Annotations
    @inline()
  60. final def sandboxToThrowable(implicit ev: <:<[E, Throwable]): FR[R, Throwable, A]

    Catch all _defects_ in this effect and convert them to Throwable Example:

    Catch all _defects_ in this effect and convert them to Throwable Example:

    F.pure(1)
      .map(_ => ???)
      .sandboxThrowable
      .catchAll(_ => IO3(println("Caught error!")))
    Definition Classes
    PanicOps
    Annotations
    @inline()
  61. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  62. final def tap[R1 <: R, E1 >: E](f0: (A) => FR[R1, E1, Unit]): FR[R1, E1, A]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  63. final def tapBoth[R1 <: R, E1 >: E, E2 >: E1](err: (E) => FR[R1, E1, Unit])(succ: (A) => FR[R1, E2, Unit]): FR[R1, E2, A]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  64. final def tapError[R1 <: R, E1 >: E](f: (E) => FR[R1, E1, Unit]): FR[R1, E1, A]
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  65. def toString(): String
    Definition Classes
    AnyRef → Any
  66. final def uninterruptible: FR[R, E, A]
    Definition Classes
    PanicOps
    Annotations
    @inline()
  67. final def void: FR[R, E, Unit]
    Definition Classes
    FunctorOps
    Annotations
    @inline()
  68. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  69. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  70. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  71. final def widen[A1](implicit ev: <:<[A, A1]): FR[R, E, A1]
    Definition Classes
    FunctorOps
    Annotations
    @inline()
  72. final def widenBoth[E1 >: E, A1](implicit ev2: <:<[A, A1]): FR[R, E1, A1]
    Definition Classes
    ApplicativeErrorOps
    Annotations
    @inline()
  73. final def widenError[E1 >: E]: FR[R, E1, A]
    Definition Classes
    ApplicativeErrorOps
    Annotations
    @inline()
  74. final def withFilter[E1 >: E](predicate: (A) => Boolean)(implicit filter: WithFilter[E1], pos: SourceFilePositionMaterializer): FR[R, E1, A]

    for-comprehensions sugar:

    for-comprehensions sugar:

    for {
      (1, 2) <- F.pure((2, 1))
    } yield ()

    Use widenError to for pattern matching with non-Throwable errors:

    val f = for {
      (1, 2) <- F.pure((2, 1)).widenError[Option[Unit]]
    } yield ()
    // f: F[Option[Unit], Unit] = F.fail(Some(())
    Definition Classes
    ErrorOps
    Annotations
    @inline()
  75. final def zip[R1 <: R, E1 >: E, B, C](r2: => FR[R1, E1, B]): FR[R1, E1, (A, B)]

    execute two operations in order, return result of both operations

    execute two operations in order, return result of both operations

    Definition Classes
    ApplicativeOps
    Annotations
    @inline()
  76. final def zipPar[R1 <: R, E1 >: E, B](that: FR[R1, E1, B]): FR[R1, E1, (A, B)]
    Annotations
    @inline()
  77. final def zipParLeft[R1 <: R, E1 >: E, B](that: FR[R1, E1, B]): FR[R1, E1, A]
    Annotations
    @inline()
  78. final def zipParRight[R1 <: R, E1 >: E, B](that: FR[R1, E1, B]): FR[R1, E1, B]
    Annotations
    @inline()
  79. final def zipWithPar[R1 <: R, E1 >: E, B, C](that: FR[R1, E1, B])(f: (A, B) => C): FR[R1, E1, C]
    Annotations
    @inline()

Inherited from IOOps[FR, R, E, A]

Inherited from PanicOps[FR, R, E, A]

Inherited from BracketOps[FR, R, E, A]

Inherited from ErrorOps[FR, R, E, A]

Inherited from ApplicativeErrorOps[FR, R, E, A]

Inherited from GuaranteeOps[FR, R, E, A]

Inherited from ApplicativeOps[FR, R, E, A]

Inherited from FunctorOps[FR, R, E, A]

Inherited from AnyRef

Inherited from Any

Ungrouped