class RecoverBridge[+T] extends AbstractPartialFunction[Throwable, T]
Ordering
- Alphabetic
- By Inheritance
Inherited
- RecoverBridge
- AbstractPartialFunction
- PartialFunction
- Function1
- AnyRef
- Any
Implicitly
- by UnliftOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new RecoverBridge()
Value Members
- def andThen[C](k: PartialFunction[T, C]): PartialFunction[Throwable, C]
- Definition Classes
- PartialFunction
- 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[R](k: PartialFunction[R, Throwable]): PartialFunction[R, T]
- Definition Classes
- PartialFunction
- def compose[A](g: (A) => Throwable): (A) => T
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def elementWise: ElementWiseExtractor[Throwable, T]
- Definition Classes
- PartialFunction
- 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
- def unapply(a: Throwable): Option[T]
- Definition Classes
- PartialFunction
- def unlift: PartialFunction[Throwable, B]
- Implicit
- This member is added by an implicit conversion from RecoverBridge[T] toUnliftOps[Throwable, B] performed by method UnliftOps in scala.Function1.This conversion will take place only if T is a subclass of Option[B] (T <: Option[B]).
- Definition Classes
- UnliftOps
(Since version 2.0) Do not use this directly, use 'Recover'