Uses of Class
org.apache.flink.core.fs.FSDataInputStream
-
Packages that use FSDataInputStream Package Description org.apache.flink.api.common.io org.apache.flink.core.fs org.apache.flink.core.fs.local -
-
Uses of FSDataInputStream in org.apache.flink.api.common.io
Subclasses of FSDataInputStream in org.apache.flink.api.common.io Modifier and Type Class Description classInputStreamFSInputWrapperThis class wraps anInputStreamand exposes it asFSDataInputStream.Fields in org.apache.flink.api.common.io declared as FSDataInputStream Modifier and Type Field Description protected FSDataInputStreamFileInputFormat. streamThe input stream reading from the input file.Methods in org.apache.flink.api.common.io that return FSDataInputStream Modifier and Type Method Description protected FSDataInputStreamFileInputFormat. decorateInputStream(FSDataInputStream inputStream, FileInputSplit fileSplit)This method allows to wrap/decorate the rawFSDataInputStreamfor a certain file split, e.g., for decoding.FSDataInputStreamFileInputFormat.InputSplitOpenThread. waitForCompletion()Methods in org.apache.flink.api.common.io with parameters of type FSDataInputStream Modifier and Type Method Description protected FSDataInputStreamFileInputFormat. decorateInputStream(FSDataInputStream inputStream, FileInputSplit fileSplit)This method allows to wrap/decorate the rawFSDataInputStreamfor a certain file split, e.g., for decoding.Constructors in org.apache.flink.api.common.io with parameters of type FSDataInputStream Constructor Description BlockBasedInput(FSDataInputStream in, int blockSize)BlockBasedInput(FSDataInputStream in, int startPos, long length) -
Uses of FSDataInputStream in org.apache.flink.core.fs
Subclasses of FSDataInputStream in org.apache.flink.core.fs Modifier and Type Class Description classClosingFSDataInputStreamThis class is aWrappingProxyforFSDataInputStreamthat is used to implement a safety net against unclosed streams.classFSDataInputStreamWrapperSimple forwarding wrapper aroundFSDataInputStream.Fields in org.apache.flink.core.fs declared as FSDataInputStream Modifier and Type Field Description protected FSDataInputStreamFSDataInputStreamWrapper. inputStreamMethods in org.apache.flink.core.fs that return FSDataInputStream Modifier and Type Method Description FSDataInputStreamFSDataInputStreamWrapper. getWrappedDelegate()abstract FSDataInputStreamFileSystem. open(Path f)Opens an FSDataInputStream at the indicated Path.abstract FSDataInputStreamFileSystem. open(Path f, int bufferSize)Opens an FSDataInputStream at the indicated Path.FSDataInputStreamLimitedConnectionsFileSystem. open(Path f)FSDataInputStreamLimitedConnectionsFileSystem. open(Path f, int bufferSize)FSDataInputStreamSafetyNetWrapperFileSystem. open(Path f)FSDataInputStreamSafetyNetWrapperFileSystem. open(Path f, int bufferSize)Methods in org.apache.flink.core.fs with parameters of type FSDataInputStream Modifier and Type Method Description static ClosingFSDataInputStreamClosingFSDataInputStream. wrapSafe(FSDataInputStream delegate, SafetyNetCloseableRegistry registry)static ClosingFSDataInputStreamClosingFSDataInputStream. wrapSafe(FSDataInputStream delegate, SafetyNetCloseableRegistry registry, String debugInfo)Constructors in org.apache.flink.core.fs with parameters of type FSDataInputStream Constructor Description FSDataInputStreamWrapper(FSDataInputStream inputStream) -
Uses of FSDataInputStream in org.apache.flink.core.fs.local
Subclasses of FSDataInputStream in org.apache.flink.core.fs.local Modifier and Type Class Description classLocalDataInputStreamTheLocalDataInputStreamclass is a wrapper class for a data input stream to the local file system.Methods in org.apache.flink.core.fs.local that return FSDataInputStream Modifier and Type Method Description FSDataInputStreamLocalFileSystem. open(Path f)FSDataInputStreamLocalFileSystem. open(Path f, int bufferSize)
-