trait FxOfFuture extends Fx[Future] with FutureFxCtor with FutureCanCatch with FutureCanHandleError with FutureCanRecover
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- FxOfFuture
- FutureCanRecover
- FutureCanHandleError
- FutureCanCatch
- FutureFxCtor
- Compat
- Fx
- CanRecover
- CanHandleError
- CanCatch
- FxCtor
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- implicit abstract def EC0: ExecutionContext
- Definition Classes
- FutureCanRecover
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- final def catchNonFatal[A, B](fb: => Future[B])(f: PartialFunction[Throwable, A]): Future[Either[A, B]]
- Definition Classes
- CanCatch
- Annotations
- @inline()
- 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()
- final def catchNonFatalThrowable[A](fa: => Future[A]): Future[Either[Throwable, A]]
- Definition Classes
- FutureCanCatch → CanCatch
- Annotations
- @inline()
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def delegateFuture[T](body: => Future[T])(implicit executor: ExecutionContext): Future[T]
- Definition Classes
- Compat
- Annotations
- @inline()
- final def effectOf[A](a: => A): Future[A]
- Definition Classes
- FutureFxCtor → FxCtor
- Annotations
- @inline()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def errorOf[A](throwable: Throwable): Future[A]
- Definition Classes
- FutureFxCtor → FxCtor
- Annotations
- @inline()
- final def flatMapFa[A, B](fa: Future[A])(f: (A) => Future[B]): Future[B]
- Definition Classes
- FutureFxCtor → FxCtor
- Annotations
- @inline()
- final def fromEffect[A](fa: => Future[A]): Future[A]
- Definition Classes
- FutureFxCtor → FxCtor
- Annotations
- @inline()
- final def fromEither[A](either: Either[Throwable, A]): Future[A]
- Definition Classes
- FutureFxCtor → FxCtor
- Annotations
- @inline()
- final def fromOption[A](option: Option[A])(orElse: => Throwable): Future[A]
- Definition Classes
- FutureFxCtor → FxCtor
- Annotations
- @inline()
- final def fromTry[A](tryA: Try[A]): Future[A]
- Definition Classes
- FutureFxCtor → FxCtor
- Annotations
- @inline()
- implicit val fxCtor: FxCtor[Future]
- Attributes
- protected
- Definition Classes
- FutureCanCatch → CanCatch
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- 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()
- 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()
- def handleNonFatal[A, AA >: A](fa: => Future[A])(handleError: (Throwable) => AA): Future[AA]
- Definition Classes
- FutureCanHandleError → CanHandleError
- Annotations
- @inline()
- def handleNonFatalWith[A, AA >: A](fa: => Future[A])(handleError: (Throwable) => Future[AA]): Future[AA]
- Definition Classes
- FutureCanHandleError → CanHandleError
- Annotations
- @inline()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def newFuture[T](body: => T)(implicit executor: ExecutionContext): Future[T]
- Definition Classes
- Compat
- Annotations
- @inline()
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def pureOf[A](a: A): Future[A]
- Definition Classes
- FutureFxCtor → FxCtor
- Annotations
- @inline()
- def pureOfLeft[B]: PureOfLeft[Future, B]
- Definition Classes
- FxCtor
- Annotations
- @inline()
- def pureOfNone[A]: Future[Option[A]]
- Definition Classes
- FxCtor
- Annotations
- @inline()
- def pureOfOption[A](a: A): Future[Option[A]]
- Definition Classes
- FxCtor
- Annotations
- @inline()
- def pureOfRight[A]: PureOfRight[Future, A]
- Definition Classes
- FxCtor
- Annotations
- @inline()
- def pureOfSome[A](a: A): Future[Option[A]]
- Definition Classes
- FxCtor
- Annotations
- @inline()
- def pureOrError[A](a: => A): Future[A]
- Definition Classes
- FutureFxCtor → FxCtor
- Annotations
- @inline()
- 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()
- 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()
- def recoverFromNonFatal[A, AA >: A](fa: => Future[A])(handleError: PartialFunction[Throwable, AA]): Future[AA]
- Definition Classes
- FutureCanRecover → CanRecover
- Annotations
- @SuppressWarnings() @inline()
- def recoverFromNonFatalWith[A, AA >: A](fa: => Future[A])(handleError: PartialFunction[Throwable, Future[AA]]): Future[AA]
- Definition Classes
- FutureCanRecover → CanRecover
- Annotations
- @inline()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def unitOf: Future[Unit]
- Definition Classes
- FutureFxCtor → FxCtor
- Annotations
- @inline()
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated