Uses of Interface
com.pervasive.datarush.io.SplitInputStream
-
Packages that use SplitInputStream Package Description com.pervasive.datarush.azure com.pervasive.datarush.io Provides classes and interfaces performing file-like I/O operations.com.pervasive.datarush.io.compression Provides classes and interfaces for supporting data compression. -
-
Uses of SplitInputStream in com.pervasive.datarush.azure
Methods in com.pervasive.datarush.azure that return SplitInputStream Modifier and Type Method Description abstract SplitInputStream
AbstractAzureClient. newInputStream(AzureFilePath path, long start, long length, int buffer)
SplitInputStream
AzureFileSplit. openSplit(int buffer)
-
Uses of SplitInputStream in com.pervasive.datarush.io
Classes in com.pervasive.datarush.io that implement SplitInputStream Modifier and Type Class Description class
SplitInputStreamImpl
A wrapper for input streams providing windowing behavior.Methods in com.pervasive.datarush.io that return SplitInputStream Modifier and Type Method Description SplitInputStream
DataSplit. openSplit(int buffer)
Opens the split for reading using the specified size for the read buffer.SplitInputStream
FileSplit. openSplit(int buffer)
SplitInputStream
SplittableCompressedFileSplit. openSplit(int buffer)
Constructors in com.pervasive.datarush.io with parameters of type SplitInputStream Constructor Description SplitReader(SplitInputStream in, CharsetEncoding charset)
Creates a new reader on the specified stream, using the given encoding properties.SplitReader(SplitInputStream in, CharsetEncoding charset, int buffer)
Creates a new reader on the specified stream, using the given encoding properties.SplitReader(SplitInputStream in, CharsetEncoding charset, int buffer, String syncMarker, boolean doInitialSync)
Creates a new reader on the specified stream, using the given encoding properties and synchronization marker.SplitReader(SplitInputStream in, CharsetEncoding charset, String syncMarker, boolean doInitialSync)
Creates a new reader on the specified stream, using the given encoding properties and synchronization marker. -
Uses of SplitInputStream in com.pervasive.datarush.io.compression
Methods in com.pervasive.datarush.io.compression that return SplitInputStream Modifier and Type Method Description SplitInputStream
BZipCompression. decompressSplitStream(DataSplit split, InputStream in, int bufferSize)
SplitInputStream
CompressionFormat. decompressSplitStream(DataSplit split, InputStream in, int bufferSize)
Wraps the specified stream for a split in a decompressor for the format.SplitInputStream
GZipCompression. decompressSplitStream(DataSplit split, InputStream in, int bufferSize)
SplitInputStream
SnappyCompression. decompressSplitStream(DataSplit split, InputStream in, int bufferSize)
SplitInputStream
UncompressedData. decompressSplitStream(DataSplit split, InputStream in, int bufferSize)
-