Uses of Interface
org.apache.flink.util.function.FunctionWithException
-
Packages that use FunctionWithException Package Description org.apache.flink.configuration org.apache.flink.core.fs org.apache.flink.util.function -
-
Uses of FunctionWithException in org.apache.flink.configuration
Methods in org.apache.flink.configuration with parameters of type FunctionWithException Modifier and Type Method Description static <IN,OUT,E extends Throwable>
List<OUT>ConfigUtils. decodeListFromConfig(ReadableConfig configuration, ConfigOption<List<IN>> key, FunctionWithException<IN,OUT,E> mapper)Gets aListof values of typeINfrom aReadableConfigand transforms it to aListof typeOUTbased on the providedmapperfunction. -
Uses of FunctionWithException in org.apache.flink.core.fs
Classes in org.apache.flink.core.fs that implement FunctionWithException Modifier and Type Class Description classRefCountedTmpFileCreatorA utility class that creates localreference counted filesthat serve as temporary files.Methods in org.apache.flink.core.fs with parameters of type FunctionWithException Modifier and Type Method Description static RefCountedBufferingFileStreamRefCountedBufferingFileStream. openNew(FunctionWithException<File,RefCountedFileWithStream,IOException> tmpFileProvider)static RefCountedBufferingFileStreamRefCountedBufferingFileStream. restore(FunctionWithException<File,RefCountedFileWithStream,IOException> tmpFileProvider, File initialTmpFile) -
Uses of FunctionWithException in org.apache.flink.util.function
Methods in org.apache.flink.util.function with parameters of type FunctionWithException Modifier and Type Method Description static <A,B>
java.util.function.Function<A,B>FunctionUtils. uncheckedFunction(FunctionWithException<A,B,?> functionWithException)Convert atFunctionWithExceptioninto aFunction.
-