Packages

class BIOAsyncMonix extends BIOAsync[IO]

Linear Supertypes
BIOAsync3[[-R, +E, +A]IO[E, A]], BIOParallel3[[-R, +E, +A]IO[E, A]], BIO3[[-R, +E, +A]IO[E, A]], BIOPanic3[[-R, +E, +A]IO[E, A]], BIOPanicSyntax, BIOBracket3[[-R, +E, +A]IO[E, A]], BIOMonadError3[[-R, +E, +A]IO[E, A]], BIOMonad3[[-R, +E, +A]IO[E, A]], BIOError3[[-R, +E, +A]IO[E, A]], BIOBifunctor3[[-R, +E, +A]IO[E, A]], BIOGuarantee3[[-R, +E, +A]IO[E, A]], BIOApplicative3[[-R, +E, +A]IO[E, A]], BIOFunctor3[[-R, +E, +A]IO[E, A]], BIORoot, PredefinedHelper, DivergenceHelper, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BIOAsyncMonix
  2. BIOAsync3
  3. BIOParallel3
  4. BIO3
  5. BIOPanic3
  6. BIOPanicSyntax
  7. BIOBracket3
  8. BIOMonadError3
  9. BIOMonad3
  10. BIOError3
  11. BIOBifunctor3
  12. BIOGuarantee3
  13. BIOApplicative3
  14. BIOFunctor3
  15. BIORoot
  16. PredefinedHelper
  17. DivergenceHelper
  18. AnyRef
  19. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new BIOAsyncMonix()

Type Members

  1. final type Canceler = IO[Nothing, Unit]
    Definition Classes
    BIOAsync3
  2. type Divergence = Nondivergent
    Definition Classes
    DivergenceHelper
  3. type IsPredefined = NotPredefined
    Definition Classes
    PredefinedHelper
  4. final type Just[+A] = IO[Nothing, A]
    Definition Classes
    BIO3
  5. final type Or[+E, +A] = IO[E, A]
    Definition Classes
    BIO3

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def *>[R, E, A, B](r: IO[E, A], next: => IO[E, B]): IO[E, B]

    execute two operations in order, return result of second operation

    execute two operations in order, return result of second operation

    Definition Classes
    BIOAsyncMonixBIOMonad3BIOApplicative3
  4. final def <*[R, E, A, B](r: IO[E, A], next: => IO[E, B]): IO[E, 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
    BIOAsyncMonixBIOMonad3BIOApplicative3
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. val InnerF: BIOMonad3[[-R, +E, +A]IO[E, A]]
    Definition Classes
    BIOAsync3BIOParallel3BIOError3BIOBifunctor3
  7. final def apply[A](effect: => A): IO[Throwable, A]
    Definition Classes
    BIO3
    Annotations
    @inline()
  8. final def as[R, E, A, B](r: IO[E, A])(v: => B): IO[E, B]
    Definition Classes
    BIOAsyncMonixBIOFunctor3
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. final def async[E, A](register: ((Either[E, A]) => Unit) => Unit): IO[E, A]
    Definition Classes
    BIOAsyncMonixBIOAsync3
  11. final def asyncCancelable[E, A](register: ((Either[E, A]) => Unit) => Canceler): IO[E, A]
    Definition Classes
    BIOAsyncMonixBIOAsync3
  12. final def asyncF[R, E, A](register: ((Either[E, A]) => Unit) => IO[E, Unit]): IO[E, A]
    Definition Classes
    BIOAsyncMonixBIOAsync3
  13. final def attempt[R, E, A](r: IO[E, A]): IO[Nothing, Either[E, A]]
    Definition Classes
    BIOAsyncMonixBIOError3
  14. final def bimap[R, E, A, E2, B](r: IO[E, A])(f: (E) => E2, g: (A) => B): IO[E2, B]
    Definition Classes
    BIOAsyncMonixBIOError3BIOBifunctor3
  15. final def bracket[R, E, A, B](acquire: IO[E, A])(release: (A) => IO[Nothing, Unit])(use: (A) => IO[E, B]): IO[E, B]
    Definition Classes
    BIOAsyncMonixBIOBracket3
  16. final def bracketCase[R, E, A, B](acquire: IO[E, A])(release: (A, BIOExit[E, B]) => IO[Nothing, Unit])(use: (A) => IO[E, B]): IO[E, B]
    Definition Classes
    BIOAsyncMonixBIOBracket3
  17. final def catchAll[R, E, A, E2](r: IO[E, A])(f: (E) => IO[E2, A]): IO[E2, A]
    Definition Classes
    BIOAsyncMonixBIOError3
  18. final def catchSome[R, E, A, E1 >: E](r: IO[E, A])(f: PartialFunction[E, IO[E1, A]]): IO[E1, A]
    Definition Classes
    BIOAsyncMonixBIOError3
  19. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  22. final def fail[E](v: => E): IO[E, Nothing]
    Definition Classes
    BIOAsyncMonixBIOError3
  23. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  24. final def flatMap[R, E, A, B](r: IO[E, A])(f: (A) => IO[E, B]): IO[E, B]
    Definition Classes
    BIOAsyncMonixBIOMonad3
  25. final def flatten[R, E, A](r: IO[E, IO[E, A]]): IO[E, A]
    Definition Classes
    BIOAsyncMonixBIOMonad3
  26. final def flip[R, E, A](r: IO[E, A]): IO[A, E]
    Definition Classes
    BIOAsyncMonixBIOMonadError3
  27. final def forever[R, E, A](r: IO[E, A]): IO[E, Nothing]
    Definition Classes
    BIOApplicative3
    Annotations
    @inline()
  28. final def fromEither[E, V](effect: => Either[E, V]): IO[E, V]
    Definition Classes
    BIOAsyncMonixBIO3BIOError3
  29. final def fromFuture[A](mkFuture: (ExecutionContext) => Future[A]): IO[Throwable, A]
    Definition Classes
    BIOAsyncMonixBIOAsync3
  30. final def fromFuture[A](mkFuture: => Future[A]): IO[Throwable, A]
    Definition Classes
    BIOAsync3
    Annotations
    @inline()
  31. final def fromFutureJava[A](javaFuture: => CompletionStage[A]): IO[Throwable, A]
    Definition Classes
    BIOAsyncMonixBIOAsync3
  32. final def fromOption[E, A](errorOnNone: => E)(effect: => Option[A]): IO[E, A]
    Definition Classes
    BIOAsyncMonixBIO3BIOError3
  33. final def fromTry[A](effect: => Try[A]): IO[Throwable, A]
    Definition Classes
    BIOAsyncMonixBIO3BIOError3
  34. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  35. final def guarantee[R, E, A](f: IO[E, A], cleanup: IO[Nothing, Unit]): IO[E, A]
    Definition Classes
    BIOAsyncMonixBIOBracket3BIOGuarantee3
  36. final def guaranteeCase[R, E, A](f: IO[E, A], cleanup: (BIOExit[E, A]) => IO[Nothing, Unit]): IO[E, A]
    Definition Classes
    BIOAsyncMonixBIOBracket3
  37. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  38. final def ifThenElse[R, E, E1, A](cond: IO[E, Boolean])(ifTrue: IO[E1, A], ifFalse: IO[E1, A])(implicit ev: <:<[E, E1]): IO[E1, A]
    Definition Classes
    BIOMonad3
    Annotations
    @inline()
  39. final def ifThenElse[R, E, A](cond: Boolean)(ifTrue: IO[E, A], ifFalse: IO[E, A]): IO[E, A]
    Definition Classes
    BIOApplicative3
    Annotations
    @inline()
  40. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  41. final def leftFlatMap[R, E, A, E2](r: IO[E, A])(f: (E) => IO[Nothing, E2]): IO[E2, A]
    Definition Classes
    BIOAsyncMonixBIOMonadError3
  42. final def leftMap[R, E, A, E2](r: IO[E, A])(f: (E) => E2): IO[E2, A]
    Definition Classes
    BIOAsyncMonixBIOBifunctor3
  43. final def map[R, E, A, B](r: IO[E, A])(f: (A) => B): IO[E, B]
    Definition Classes
    BIOAsyncMonixBIOMonad3BIOFunctor3
  44. final def map2[R, E, A, B, C](r1: IO[E, A], r2: => IO[E, B])(f: (A, B) => C): IO[E, C]

    execute two operations in order, map their results

    execute two operations in order, map their results

    Definition Classes
    BIOAsyncMonixBIOMonad3BIOApplicative3
  45. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  46. final def never: IO[Nothing, Nothing]
    Definition Classes
    BIOAsyncMonixBIOAsync3
  47. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  48. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  49. final def orTerminate[R, A](r: IO[Throwable, A]): IO[Nothing, A]
    Definition Classes
    BIOPanic3
    Annotations
    @inline()
  50. final def parTraverse[R, E, A, B](l: Iterable[A])(f: (A) => IO[E, B]): IO[E, List[B]]
    Definition Classes
    BIOAsyncMonixBIOParallel3
  51. final def parTraverseN[R, E, A, B](maxConcurrent: Int)(l: Iterable[A])(f: (A) => IO[E, B]): IO[E, List[B]]
    Definition Classes
    BIOAsyncMonixBIOParallel3
  52. final def parTraverseN_[R, E, A, B](maxConcurrent: Int)(l: Iterable[A])(f: (A) => IO[E, B]): IO[E, Unit]
    Definition Classes
    BIOAsyncMonixBIOParallel3
  53. final def parTraverse_[R, E, A, B](l: Iterable[A])(f: (A) => IO[E, B]): IO[E, Unit]
    Definition Classes
    BIOAsyncMonixBIOParallel3
  54. final def pure[A](a: A): IO[Nothing, A]
    Definition Classes
    BIOAsyncMonixBIOApplicative3
  55. final def race[R, E, A](r1: IO[E, A], r2: IO[E, A]): IO[E, A]

    Race two actions, the winner is the first action to TERMINATE, whether by success or failure

    Race two actions, the winner is the first action to TERMINATE, whether by success or failure

    Definition Classes
    BIOAsyncMonixBIOAsync3
  56. final def racePair[R, E, A, B](fa: IO[E, A], fb: IO[E, B]): IO[E, Either[(A, BIOFiber[IO, E, B]), (BIOFiber[IO, E, A], B)]]

    Race two actions, the winner is the first action to TERMINATE, whether by success or failure

    Race two actions, the winner is the first action to TERMINATE, whether by success or failure

    Definition Classes
    BIOAsyncMonixBIOAsync3
  57. final def redeem[R, E, A, E2, B](r: IO[E, A])(err: (E) => IO[E2, B], succ: (A) => IO[E2, B]): IO[E2, B]
    Definition Classes
    BIOAsyncMonixBIOMonadError3
  58. final def redeemPure[R, E, A, B](r: IO[E, A])(err: (E) => B, succ: (A) => B): IO[Nothing, B]
    Definition Classes
    BIOAsyncMonixBIOError3
  59. final def sandbox[R, E, A](r: IO[E, A]): IO[Failure[E], A]
    Definition Classes
    BIOAsyncMonixBIOPanic3
  60. final def sequence[R, E, A, B](l: Iterable[IO[E, A]]): IO[E, List[A]]
    Definition Classes
    BIOAsyncMonixBIOApplicative3
  61. final def sequence_[R, E](l: Iterable[IO[E, Unit]]): IO[E, Unit]
    Definition Classes
    BIOAsyncMonixBIOApplicative3
  62. final def suspend[R, A](effect: => IO[Throwable, A]): IO[Throwable, A]
    Definition Classes
    BIOAsyncMonixBIO3
  63. final def sync[A](effect: => A): IO[Nothing, A]
    Definition Classes
    BIOAsyncMonixBIO3
  64. final def syncThrowable[A](effect: => A): IO[Throwable, A]
    Definition Classes
    BIOAsyncMonixBIO3
  65. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  66. def tailRecM[R, E, A, B](a: A)(f: (A) => IO[E, Either[A, B]]): IO[E, B]
    Definition Classes
    BIOMonad3
  67. final def tap[R, E, A](r: IO[E, A])(f: (A) => IO[E, Unit]): IO[E, A]
    Definition Classes
    BIOAsyncMonixBIOMonad3
  68. final def tapBoth[R, E, A, E1 >: E](r: IO[E, A])(err: (E) => IO[E1, Unit], succ: (A) => IO[E1, Unit]): IO[E1, A]
    Definition Classes
    BIOAsyncMonixBIOMonadError3
  69. final def tapError[R, E, A, E1 >: E](r: IO[E, A])(f: (E) => IO[E1, Unit]): IO[E1, A]
    Definition Classes
    BIOAsyncMonixBIOError3
  70. final def terminate(v: => Throwable): IO[Nothing, Nothing]
    Definition Classes
    BIOAsyncMonixBIOPanic3
  71. def toString(): String
    Definition Classes
    AnyRef → Any
  72. final def traverse[R, E, A, B](l: Iterable[A])(f: (A) => IO[E, B]): IO[E, List[B]]
    Definition Classes
    BIOAsyncMonixBIOApplicative3
  73. final def traverse[R, E, A, B](o: Option[A])(f: (A) => IO[E, B]): IO[E, Option[B]]
    Definition Classes
    BIOApplicative3
    Annotations
    @inline()
  74. final def traverse_[R, E, A](l: Iterable[A])(f: (A) => IO[E, Unit]): IO[E, Unit]
    Definition Classes
    BIOAsyncMonixBIOApplicative3
  75. final def uninterruptible[R, E, A](r: IO[E, A]): IO[E, A]
    Definition Classes
    BIOAsyncMonixBIOAsync3
  76. final val unit: IO[Nothing, Unit]
    Definition Classes
    BIOApplicative3
  77. final def unless[R, E, E1](cond: IO[E, Boolean])(ifFalse: IO[E1, Unit])(implicit ev: <:<[E, E1]): IO[E1, Unit]
    Definition Classes
    BIOMonad3
    Annotations
    @inline()
  78. final def unless[R, E](cond: Boolean)(ifFalse: IO[E, Unit]): IO[E, Unit]
    Definition Classes
    BIOApplicative3
    Annotations
    @inline()
  79. final def void[R, E, A](r: IO[E, A]): IO[E, Unit]
    Definition Classes
    BIOAsyncMonixBIOFunctor3
  80. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  81. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  82. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  83. final def when[R, E, E1](cond: IO[E, Boolean])(ifTrue: IO[E1, Unit])(implicit ev: <:<[E, E1]): IO[E1, Unit]
    Definition Classes
    BIOMonad3
    Annotations
    @inline()
  84. final def when[R, E](cond: Boolean)(ifTrue: IO[E, Unit]): IO[E, Unit]
    Definition Classes
    BIOApplicative3
    Annotations
    @inline()
  85. final def widen[R, E, A, A1](r: IO[E, A])(implicit ev: <:<[A, A1]): IO[E, A1]
    Definition Classes
    BIOFunctor3
    Annotations
    @inline()
  86. final def widenBoth[R, E, A, E1, A1](r: IO[E, A])(implicit ev: <:<[E, E1], ev2: <:<[A, A1]): IO[E1, A1]
    Definition Classes
    BIOBifunctor3
    Annotations
    @inline()
  87. final def widenError[R, E, A, E1](r: IO[E, A])(implicit ev: <:<[E, E1]): IO[E1, A]
    Definition Classes
    BIOBifunctor3
    Annotations
    @inline()
  88. final def withFilter[R, E, A](r: IO[E, A])(predicate: (A) => Boolean)(implicit ev: <:<[NoSuchElementException, E]): IO[E, A]

    for-comprehensions sugar:

    for-comprehensions sugar:

    for {
     (1, 2) <- F.pure((2, 1))
    } yield ()
    Definition Classes
    BIOAsyncMonixBIOMonadError3
  89. final def yieldNow: IO[Nothing, Unit]
    Definition Classes
    BIOAsyncMonixBIOAsync3
  90. final def zipPar[R, E, A, B](fa: IO[E, A], fb: IO[E, B]): IO[E, (A, B)]

    Returns an effect that executes both effects, in parallel, combining their results into a tuple.

    Returns an effect that executes both effects, in parallel, combining their results into a tuple. If either side fails, then the other side will be interrupted.

    Definition Classes
    BIOAsyncMonixBIOParallel3
  91. final def zipParLeft[R, E, A, B](fa: IO[E, A], fb: IO[E, B]): IO[E, A]

    Returns an effect that executes both effects, in parallel, the left effect result is returned.

    Returns an effect that executes both effects, in parallel, the left effect result is returned. If either side fails, then the other side will be interrupted.

    Definition Classes
    BIOAsyncMonixBIOParallel3
  92. final def zipParRight[R, E, A, B](fa: IO[E, A], fb: IO[E, B]): IO[E, B]

    Returns an effect that executes both effects, in parallel, the right effect result is returned.

    Returns an effect that executes both effects, in parallel, the right effect result is returned. If either side fails, then the other side will be interrupted.

    Definition Classes
    BIOAsyncMonixBIOParallel3
  93. final def zipWithPar[R, E, A, B, C](fa: IO[E, A], fb: IO[E, B])(f: (A, B) => C): IO[E, C]

    Returns an effect that executes both effects, in parallel, combining their results with the specified f function.

    Returns an effect that executes both effects, in parallel, combining their results with the specified f function. If either side fails, then the other side will be interrupted.

    Definition Classes
    BIOAsyncMonixBIOParallel3

Inherited from BIOAsync3[[-R, +E, +A]IO[E, A]]

Inherited from BIOParallel3[[-R, +E, +A]IO[E, A]]

Inherited from BIO3[[-R, +E, +A]IO[E, A]]

Inherited from BIOPanic3[[-R, +E, +A]IO[E, A]]

Inherited from BIOPanicSyntax

Inherited from BIOBracket3[[-R, +E, +A]IO[E, A]]

Inherited from BIOMonadError3[[-R, +E, +A]IO[E, A]]

Inherited from BIOMonad3[[-R, +E, +A]IO[E, A]]

Inherited from BIOError3[[-R, +E, +A]IO[E, A]]

Inherited from BIOBifunctor3[[-R, +E, +A]IO[E, A]]

Inherited from BIOGuarantee3[[-R, +E, +A]IO[E, A]]

Inherited from BIOApplicative3[[-R, +E, +A]IO[E, A]]

Inherited from BIOFunctor3[[-R, +E, +A]IO[E, A]]

Inherited from BIORoot

Inherited from PredefinedHelper

Inherited from DivergenceHelper

Inherited from AnyRef

Inherited from Any

Ungrouped