kactoos-jvm / nnl.rocks.kactoos.func / FuncWithFallback
class FuncWithFallback<in X : Any, out Y : Any> : Func<X, Y>
Func with a fallback plan.
There is no thread-safety guarantee.
X - Type of input
Y - Type of output
func - The func
fallback - The fallback
follow - The follow up func
Since 0.2
| Name | Summary |
|---|---|
| <init> | FuncWithFallback(func: Func<X, Y>, fallback: Func<Throwable, Y>)FuncWithFallback(func: Func<X, Y>, fallback: Func<Throwable, Y>, follow: Func<Y, Y>)Func with a fallback plan. |
| Name | Summary |
|---|---|
| apply | fun apply(input: X): YApply it. |