Uses of Interface
org.apache.flink.util.function.ThrowingRunnable
-
Packages that use ThrowingRunnable Package Description org.apache.flink.api.common.operators org.apache.flink.util org.apache.flink.util.function -
-
Uses of ThrowingRunnable in org.apache.flink.api.common.operators
Methods in org.apache.flink.api.common.operators with parameters of type ThrowingRunnable Modifier and Type Method Description default voidMailboxExecutor. execute(ThrowingRunnable<? extends Exception> command, String description)Executes the given command at some time in the future in the mailbox thread.voidMailboxExecutor. execute(ThrowingRunnable<? extends Exception> command, String descriptionFormat, Object... descriptionArgs)Executes the given command at some time in the future in the mailbox thread. -
Uses of ThrowingRunnable in org.apache.flink.util
Methods in org.apache.flink.util with parameters of type ThrowingRunnable Modifier and Type Method Description <E extends Exception>
OptionalConsumer<T>OptionalConsumer. ifNotPresent(ThrowingRunnable<E> r)static <E extends Throwable>
voidLambdaUtil. withContextClassLoader(ClassLoader cl, ThrowingRunnable<E> r)Runs the given runnable with the given ClassLoader as the thread'scontext class loader. -
Uses of ThrowingRunnable in org.apache.flink.util.function
Subinterfaces of ThrowingRunnable in org.apache.flink.util.function Modifier and Type Interface Description interfaceRunnableWithExceptionSimilar to aRunnable, this interface is used to capture a block of code to be executed.Classes in org.apache.flink.util.function that implement ThrowingRunnable Modifier and Type Class Description classFutureTaskWithException<V>FutureTaskthat also implementsRunnableWithException.Methods in org.apache.flink.util.function with parameters of type ThrowingRunnable Modifier and Type Method Description static RunnableThrowingRunnable. unchecked(ThrowingRunnable<?> throwingRunnable)Converts aThrowingRunnableinto aRunnablewhich throws all checked exceptions as unchecked.
-