Uses of Interface
org.jooq.lambda.fi.util.concurrent.CheckedCallable
-
Packages that use CheckedCallable Package Description org.jooq.lambda This package contains useful extensions for interoperation with Java 8's lambda expressions andFunctionalInterface
types.org.jooq.lambda.fi.util.concurrent This package contains duplicates of the JDK'sFunctionalInterface
types from thejava.util.concurrent
package, allowing to throw checked Exceptions that can be handled inUnchecked
. -
-
Uses of CheckedCallable in org.jooq.lambda
Methods in org.jooq.lambda with parameters of type CheckedCallable Modifier and Type Method Description static <T> java.util.concurrent.Callable<T>
Sneaky. callable(CheckedCallable<T> callable)
Wrap aCheckedCallable
in aCallable
.static <T> java.util.concurrent.Callable<T>
Unchecked. callable(CheckedCallable<T> callable)
Wrap aCheckedCallable
in aCallable
.static <T> java.util.concurrent.Callable<T>
Unchecked. callable(CheckedCallable<T> callable, java.util.function.Consumer<java.lang.Throwable> handler)
Wrap aCheckedCallable
in aCallable
with a custom handler for checked exceptions. -
Uses of CheckedCallable in org.jooq.lambda.fi.util.concurrent
Methods in org.jooq.lambda.fi.util.concurrent with parameters of type CheckedCallable Modifier and Type Method Description static <T> java.util.concurrent.Callable<T>
CheckedCallable. sneaky(CheckedCallable<T> callable)
static <T> java.util.concurrent.Callable<T>
CheckedCallable. unchecked(CheckedCallable<T> callable)
static <T> java.util.concurrent.Callable<T>
CheckedCallable. unchecked(CheckedCallable<T> callable, java.util.function.Consumer<java.lang.Throwable> handler)
-