Package ai.rapids.cudf
Interface StreamedTableReader
- All Superinterfaces:
AutoCloseable
Provides an interface for reading multiple tables from a single input source.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Get the next table if available.getNextIfAvailable
(int rowTarget) Get the next table if available.
-
Method Details
-
getNextIfAvailable
Get the next table if available.- Returns:
- the next Table or null if done reading tables.
- Throws:
CudfException
- on any error.
-
getNextIfAvailable
Get the next table if available.- Parameters:
rowTarget
- the target number of rows to read (this is really just best effort).- Returns:
- the next Table or null if done reading tables.
- Throws:
CudfException
- on any error.
-
close
- Specified by:
close
in interfaceAutoCloseable
- Throws:
CudfException
-