Uses of Interface
org.apache.flink.util.function.SupplierWithException
-
Packages that use SupplierWithException Package Description org.apache.flink.util org.apache.flink.util.concurrent org.apache.flink.util.function -
-
Uses of SupplierWithException in org.apache.flink.util
Methods in org.apache.flink.util with parameters of type SupplierWithException Modifier and Type Method Description static <R,E extends Throwable>
RLambdaUtil. withContextClassLoader(ClassLoader cl, SupplierWithException<R,E> s)Runs the given runnable with the given ClassLoader as the thread'scontext class loader. -
Uses of SupplierWithException in org.apache.flink.util.concurrent
Methods in org.apache.flink.util.concurrent with parameters of type SupplierWithException Modifier and Type Method Description static <T> CompletableFuture<T>FutureUtils. supplyAsync(SupplierWithException<T,?> supplier, Executor executor)Returns a future which is completed with the result of theSupplierWithException. -
Uses of SupplierWithException in org.apache.flink.util.function
Subinterfaces of SupplierWithException in org.apache.flink.util.function Modifier and Type Interface Description interfaceCheckedSupplier<R>Similar toSupplierbut can throwException.interfaceSerializableSupplierWithException<T,E extends Throwable>A serializableSupplierWithException.Methods in org.apache.flink.util.function with parameters of type SupplierWithException Modifier and Type Method Description static <T> java.util.function.Supplier<T>FunctionUtils. uncheckedSupplier(SupplierWithException<T,?> supplierWithException)Converts aSupplierWithExceptioninto aSupplierwhich throws all checked exceptions as unchecked.
-