Packages

trait FxOfFuture extends Fx[Future] with FutureFxCtor with FutureCanCatch with FutureCanHandleError with FutureCanRecover

Linear Supertypes
FutureCanRecover, FutureCanHandleError, FutureCanCatch, FutureFxCtor, Compat, Fx[Future], CanRecover[Future], CanHandleError[Future], CanCatch[Future], FxCtor[Future], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FxOfFuture
  2. FutureCanRecover
  3. FutureCanHandleError
  4. FutureCanCatch
  5. FutureFxCtor
  6. Compat
  7. Fx
  8. CanRecover
  9. CanHandleError
  10. CanCatch
  11. FxCtor
  12. AnyRef
  13. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. implicit abstract def EC0: ExecutionContext
    Definition Classes
    FutureCanRecover

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. final def catchNonFatal[A, B](fb: => Future[B])(f: PartialFunction[Throwable, A]): Future[Either[A, B]]
    Definition Classes
    CanCatch
    Annotations
    @inline()
  6. final def catchNonFatalEither[A, AA >: A, B](fab: => Future[Either[A, B]])(f: PartialFunction[Throwable, AA]): Future[Either[AA, B]]
    Definition Classes
    CanCatch
    Annotations
    @inline()
  7. final def catchNonFatalThrowable[A](fa: => Future[A]): Future[Either[Throwable, A]]
    Definition Classes
    FutureCanCatchCanCatch
    Annotations
    @inline()
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. final def delegateFuture[T](body: => Future[T])(implicit executor: ExecutionContext): Future[T]
    Definition Classes
    Compat
    Annotations
    @inline()
  10. final def effectOf[A](a: => A): Future[A]
    Definition Classes
    FutureFxCtorFxCtor
    Annotations
    @inline()
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. final def errorOf[A](throwable: Throwable): Future[A]
    Definition Classes
    FutureFxCtorFxCtor
    Annotations
    @inline()
  14. final def flatMapFa[A, B](fa: Future[A])(f: (A) => Future[B]): Future[B]
    Definition Classes
    FutureFxCtorFxCtor
    Annotations
    @inline()
  15. final def fromEffect[A](fa: => Future[A]): Future[A]
    Definition Classes
    FutureFxCtorFxCtor
    Annotations
    @inline()
  16. final def fromEither[A](either: Either[Throwable, A]): Future[A]
    Definition Classes
    FutureFxCtorFxCtor
    Annotations
    @inline()
  17. final def fromOption[A](option: Option[A])(orElse: => Throwable): Future[A]
    Definition Classes
    FutureFxCtorFxCtor
    Annotations
    @inline()
  18. final def fromTry[A](tryA: Try[A]): Future[A]
    Definition Classes
    FutureFxCtorFxCtor
    Annotations
    @inline()
  19. implicit val fxCtor: FxCtor[Future]
    Attributes
    protected
    Definition Classes
    FutureCanCatchCanCatch
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def handleEitherNonFatal[A, AA >: A, B, BB >: B](fab: => Future[Either[A, B]])(handleError: (Throwable) => Either[AA, BB]): Future[Either[AA, BB]]
    Definition Classes
    CanHandleError
    Annotations
    @inline()
  22. final def handleEitherNonFatalWith[A, AA >: A, B, BB >: B](fab: => Future[Either[A, B]])(handleError: (Throwable) => Future[Either[AA, BB]]): Future[Either[AA, BB]]
    Definition Classes
    CanHandleError
    Annotations
    @inline()
  23. def handleNonFatal[A, AA >: A](fa: => Future[A])(handleError: (Throwable) => AA): Future[AA]
    Definition Classes
    FutureCanHandleErrorCanHandleError
    Annotations
    @inline()
  24. def handleNonFatalWith[A, AA >: A](fa: => Future[A])(handleError: (Throwable) => Future[AA]): Future[AA]
    Definition Classes
    FutureCanHandleErrorCanHandleError
    Annotations
    @inline()
  25. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def newFuture[T](body: => T)(implicit executor: ExecutionContext): Future[T]
    Definition Classes
    Compat
    Annotations
    @inline()
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  31. final def pureOf[A](a: A): Future[A]
    Definition Classes
    FutureFxCtorFxCtor
    Annotations
    @inline()
  32. def pureOfLeft[B]: PureOfLeft[Future, B]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  33. def pureOfNone[A]: Future[Option[A]]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  34. def pureOfOption[A](a: A): Future[Option[A]]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  35. def pureOfRight[A]: PureOfRight[Future, A]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  36. def pureOfSome[A](a: A): Future[Option[A]]
    Definition Classes
    FxCtor
    Annotations
    @inline()
  37. def pureOrError[A](a: => A): Future[A]
    Definition Classes
    FutureFxCtorFxCtor
    Annotations
    @inline()
  38. final def recoverEitherFromNonFatal[A, AA >: A, B, BB >: B](fab: => Future[Either[A, B]])(handleError: PartialFunction[Throwable, Either[AA, BB]]): Future[Either[AA, BB]]
    Definition Classes
    CanRecover
    Annotations
    @inline()
  39. final def recoverEitherFromNonFatalWith[A, AA >: A, B, BB >: B](fab: => Future[Either[A, B]])(handleError: PartialFunction[Throwable, Future[Either[AA, BB]]]): Future[Either[AA, BB]]
    Definition Classes
    CanRecover
    Annotations
    @inline()
  40. def recoverFromNonFatal[A, AA >: A](fa: => Future[A])(handleError: PartialFunction[Throwable, AA]): Future[AA]
    Definition Classes
    FutureCanRecoverCanRecover
    Annotations
    @SuppressWarnings() @inline()
  41. def recoverFromNonFatalWith[A, AA >: A](fa: => Future[A])(handleError: PartialFunction[Throwable, Future[AA]]): Future[AA]
    Definition Classes
    FutureCanRecoverCanRecover
    Annotations
    @inline()
  42. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  43. def toString(): String
    Definition Classes
    AnyRef → Any
  44. final def unitOf: Future[Unit]
    Definition Classes
    FutureFxCtorFxCtor
    Annotations
    @inline()
  45. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  46. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  47. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from FutureCanRecover

Inherited from FutureCanHandleError

Inherited from FutureCanCatch

Inherited from FutureFxCtor

Inherited from Compat

Inherited from Fx[Future]

Inherited from CanRecover[Future]

Inherited from CanHandleError[Future]

Inherited from CanCatch[Future]

Inherited from FxCtor[Future]

Inherited from AnyRef

Inherited from Any

Ungrouped