Uses of Class
com.pervasive.datarush.io.BinaryReader
-
Packages that use BinaryReader Package Description com.pervasive.datarush.encoding Provides basic interfaces used when converting tokens into various formats.com.pervasive.datarush.encoding.binary Implementations of encoders of tokens into binary formats.com.pervasive.datarush.io Provides classes and interfaces performing file-like I/O operations. -
-
Uses of BinaryReader in com.pervasive.datarush.encoding
Methods in com.pervasive.datarush.encoding with parameters of type BinaryReader Modifier and Type Method Description void
TokenDecoder. decode(BinaryReader source, boolean skip)
Decodes the encoding at the current position of the reader and stores the value in the current target.void
TokenDecoder. decodeField(BinaryReader source, int fieldIndex, boolean skip)
Decodes the encoding at the current position of the reader and stores the value in the current target. -
Uses of BinaryReader in com.pervasive.datarush.encoding.binary
Methods in com.pervasive.datarush.encoding.binary with parameters of type BinaryReader Modifier and Type Method Description void
SparseRecordDecoder. decode(BinaryReader source, boolean skip)
void
AbstractTokenDecoder. decodeField(BinaryReader source, int fieldIndex, boolean skip)
This implementation delegates toTokenDecoder.decode(BinaryReader, boolean)
.void
ComparableTokenDecoder. decodeFieldAdditionalBytes(BinaryReader source, int fieldIndex, boolean skip)
Decodes the additional bytes ( those that are required for storage but not for comparison) to the buffer.void
ComparableTokenDecoder. decodeFieldComparisonBytes(BinaryReader source, int fieldIndex, boolean skip)
Decodes those bytes that are needed for byte-wise comparison. -
Uses of BinaryReader in com.pervasive.datarush.io
Subclasses of BinaryReader in com.pervasive.datarush.io Modifier and Type Class Description class
SplitInputStreamImpl
A wrapper for input streams providing windowing behavior.
-