Uses of Interface
com.pervasive.datarush.operators.io.ByteSource
-
Packages that use ByteSource Package Description com.actian.dataflow.operators.io.orc com.actian.dataflow.operators.io.parquet com.pervasive.datarush.operators.io Provides base file I/O components including encoders and decoders.com.pervasive.datarush.operators.io.avro Provides operators for reading and writing files in Avro format.com.pervasive.datarush.operators.io.binary com.pervasive.datarush.operators.io.mdf com.pervasive.datarush.operators.io.staging Provides operators for reading and writing DataRush staging datasets.com.pervasive.datarush.operators.io.textfile Provides operators for reading and writing text data. -
-
Uses of ByteSource in com.actian.dataflow.operators.io.orc
Methods in com.actian.dataflow.operators.io.orc with parameters of type ByteSource Modifier and Type Method Description FileMetadata
ORCFormat. readMetadata(FileClient fileClient, ByteSource source)
Constructors in com.actian.dataflow.operators.io.orc with parameters of type ByteSource Constructor Description ReadORC(ByteSource source)
Reads the specified data source using default options. -
Uses of ByteSource in com.actian.dataflow.operators.io.parquet
Methods in com.actian.dataflow.operators.io.parquet with parameters of type ByteSource Modifier and Type Method Description FileMetadata
ParquetFormat. readMetadata(FileClient fileClient, ByteSource source)
Constructors in com.actian.dataflow.operators.io.parquet with parameters of type ByteSource Constructor Description ReadParquet(ByteSource source)
Reads the specified data source using default options. -
Uses of ByteSource in com.pervasive.datarush.operators.io
Classes in com.pervasive.datarush.operators.io that implement ByteSource Modifier and Type Class Description class
BasicByteSource
A data source identified by aPath
.class
ConcatenatedByteSource
A data source which concatenates multiple sources.class
GlobbingByteSource
A data source representing the concatenation of all files matching a pattern.Methods in com.pervasive.datarush.operators.io that return ByteSource Modifier and Type Method Description ByteSource
BasicByteSource. authorize(FileClient client)
ByteSource
ByteSource. authorize(FileClient client)
Creates a new source with the same properties, but using the specified authorization.ByteSource
ConcatenatedByteSource. authorize(FileClient client)
ByteSource
GlobbingByteSource. authorize(FileClient client)
static ByteSource
ConcatenatedByteSource. getConcatenatedSource(List<Path> paths)
Creates a source which is the concatenation of the specified paths, in order.static ByteSource
ConcatenatedByteSource. getConcatenatedSource(List<Path> paths, UnreadableSourceAction onUnreadable)
Creates a source which is the concatenation of the specified paths, in order.ByteSource
AbstractReader. getSource()
Gets the source being read.ByteSource
ReadSource. getSource()
Gets the data source for the reader.ByteSource
BasicByteSource. validate()
ByteSource
ByteSource. validate()
Performs validation of the source configuration.ByteSource
ConcatenatedByteSource. validate()
ByteSource
GlobbingByteSource. validate()
Methods in com.pervasive.datarush.operators.io that return types with arguments of type ByteSource Modifier and Type Method Description List<ByteSource>
ConcatenatedByteSource. getSources()
Gets the sources which comprise the combined source.Methods in com.pervasive.datarush.operators.io with parameters of type ByteSource Modifier and Type Method Description FileMetadata
DataFormat. readMetadata(FileClient fileClient, ByteSource source)
Reads the metadata associated with the format.void
AbstractReader. setSource(ByteSource source)
Sets the data source to the specified source.void
ReadSource. setSource(ByteSource source)
Sets the data source for the reader.Constructors in com.pervasive.datarush.operators.io with parameters of type ByteSource Constructor Description AbstractReader(ByteSource source)
Reads the specified data source using default options.ReadSource(ByteSource source, DataFormat format)
Reads the specified source using the given format.Constructor parameters in com.pervasive.datarush.operators.io with type arguments of type ByteSource Constructor Description ConcatenatedByteSource(List<? extends ByteSource> sources)
Creates a data source representing the concatenation of the specified sources. -
Uses of ByteSource in com.pervasive.datarush.operators.io.avro
Methods in com.pervasive.datarush.operators.io.avro with parameters of type ByteSource Modifier and Type Method Description FileMetadata
AvroFormat. readMetadata(FileClient fileClient, ByteSource source)
Constructors in com.pervasive.datarush.operators.io.avro with parameters of type ByteSource Constructor Description ReadAvro(ByteSource source)
Reads the specified data source using default options. -
Uses of ByteSource in com.pervasive.datarush.operators.io.binary
Methods in com.pervasive.datarush.operators.io.binary with parameters of type ByteSource Modifier and Type Method Description FileMetadata
BinaryFormat. readMetadata(FileClient fileClient, ByteSource source)
-
Uses of ByteSource in com.pervasive.datarush.operators.io.mdf
Methods in com.pervasive.datarush.operators.io.mdf with parameters of type ByteSource Modifier and Type Method Description static com.pervasive.datarush.operators.io.mdf.internal.MDF<?>
MDFUtil. getMDFFileWrapper(MDFUtil.MDFVersion version, FileClient fileClient, ByteSource source)
FileMetadata
MDFFormat. readMetadata(FileClient fileClient, ByteSource source)
Constructors in com.pervasive.datarush.operators.io.mdf with parameters of type ByteSource Constructor Description ReadMDF(ByteSource source)
Reads the specified data source using default options. -
Uses of ByteSource in com.pervasive.datarush.operators.io.staging
Constructors in com.pervasive.datarush.operators.io.staging with parameters of type ByteSource Constructor Description ReadStagingDataset(ByteSource source)
Reads the specified data source using default options. -
Uses of ByteSource in com.pervasive.datarush.operators.io.textfile
Methods in com.pervasive.datarush.operators.io.textfile with parameters of type ByteSource Modifier and Type Method Description FileMetadata
ARFFDataFormat. readMetadata(FileClient fileClient, ByteSource source)
FileMetadata
DelimitedTextFormat. readMetadata(FileClient fileClient, ByteSource source)
FileMetadata
FixedTextFormat. readMetadata(FileClient fileClient, ByteSource source)
FileMetadata
JSONFormat. readMetadata(FileClient fileClient, ByteSource source)
FileMetadata
LogDataFormat. readMetadata(FileClient fileClient, ByteSource source)
Constructors in com.pervasive.datarush.operators.io.textfile with parameters of type ByteSource Constructor Description AbstractTextReader(ByteSource source)
Reads the specified data source using default options.ReadARFF(ByteSource source)
Reads the specified data source using default options.ReadDelimitedText(ByteSource source)
Reads the specified data source using default options.ReadFixedText(ByteSource source)
Reads the specified data source using default options.ReadJSON(ByteSource source)
Reads the specified data source using default options.ReadLog(ByteSource source)
Reads the specified data source using default options.
-