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 andFunctionalInterfacetypes.org.jooq.lambda.fi.lang This package contains duplicates of the JDK'sFunctionalInterfacetypes from thejava.langpackage, 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.RunnableSneaky. runnable(CheckedRunnable runnable)Wrap aCheckedRunnablein aRunnable.static java.lang.RunnableUnchecked. runnable(CheckedRunnable runnable)Wrap aCheckedRunnablein aRunnable.static java.lang.RunnableUnchecked. runnable(CheckedRunnable runnable, java.util.function.Consumer<java.lang.Throwable> handler)Wrap aCheckedRunnablein aRunnablewith 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.RunnableCheckedRunnable. sneaky(CheckedRunnable runnable)static java.lang.RunnableCheckedRunnable. unchecked(CheckedRunnable runnable)static java.lang.RunnableCheckedRunnable. unchecked(CheckedRunnable runnable, java.util.function.Consumer<java.lang.Throwable> handler)
-