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 andFunctionalInterfacetypes.org.jooq.lambda.fi.util.concurrent This package contains duplicates of the JDK'sFunctionalInterfacetypes from thejava.util.concurrentpackage, 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 aCheckedCallablein aCallable.static <T> java.util.concurrent.Callable<T>Unchecked. callable(CheckedCallable<T> callable)Wrap aCheckedCallablein aCallable.static <T> java.util.concurrent.Callable<T>Unchecked. callable(CheckedCallable<T> callable, java.util.function.Consumer<java.lang.Throwable> handler)Wrap aCheckedCallablein aCallablewith 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)
-