abstract class Recover[+T] extends RecoverBridge[T]
Callback for the Future.recover operation that conditionally turns failures into successes.
SAM (Single Abstract Method) class
Java API
- Source
- Future.scala
Linear Supertypes
Type Hierarchy
Ordering
- Alphabetic
- By Inheritance
Inherited
- Recover
- RecoverBridge
- AbstractPartialFunction
- PartialFunction
- Function1
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new Recover()
Abstract Value Members
-
abstract
def
recover(failure: Throwable): T
This method will be invoked once when/if the Future this recover callback is registered on becomes completed with a failure.
This method will be invoked once when/if the Future this recover callback is registered on becomes completed with a failure.
- returns
a successful value for the passed in failure Throws the passed in failure to propagate it. Java API
- Annotations
- @throws( classOf[Throwable] )
Concrete Value Members
-
def
andThen[C](k: (T) ⇒ C): PartialFunction[Throwable, C]
- Definition Classes
- PartialFunction → Function1
-
final
def
apply(t: Throwable): T
- Definition Classes
- RecoverBridge → AbstractPartialFunction → Function1
-
def
applyOrElse[A1 <: Throwable, B1 >: T](x: A1, default: (A1) ⇒ B1): B1
- Definition Classes
- PartialFunction
-
def
compose[A](g: (A) ⇒ Throwable): (A) ⇒ T
- Definition Classes
- Function1
- Annotations
- @unspecialized()
-
final
def
isDefinedAt(t: Throwable): Boolean
- Definition Classes
- RecoverBridge → PartialFunction
-
def
lift: (Throwable) ⇒ Option[T]
- Definition Classes
- PartialFunction
-
def
orElse[A1 <: Throwable, B1 >: T](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
- Definition Classes
- PartialFunction
-
def
runWith[U](action: (T) ⇒ U): (Throwable) ⇒ Boolean
- Definition Classes
- PartialFunction
-
def
toString(): String
- Definition Classes
- Function1 → AnyRef → Any