Uses of Interface
org.apache.commons.lang3.function.FailableCallable
-
Packages that use FailableCallable Package Description org.apache.commons.lang3.function Provides functional interfaces to complement those injava.lang.function
and utilities for working with Java 8 lambdas. -
-
Uses of FailableCallable in org.apache.commons.lang3.function
Methods in org.apache.commons.lang3.function with parameters of type FailableCallable Modifier and Type Method Description static <V> java.util.concurrent.Callable<V>
Failable. asCallable(FailableCallable<V,?> callable)
Converts the givenFailableCallable
into a standardCallable
.static <V,E extends java.lang.Throwable>
VFailable. call(FailableCallable<V,E> callable)
Calls a callable and rethrows any exception as aRuntimeException
.
-