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