Package org.apache.iceberg
Interface CombinedScanTask
- All Superinterfaces:
ScanTask
,ScanTaskGroup<FileScanTask>
,Serializable
- All Known Implementing Classes:
BaseCombinedScanTask
A scan task made of several ranges from files.
-
Method Summary
Modifier and TypeMethodDescriptiondefault CombinedScanTask
Returns this cast toCombinedScanTask
if it is onefiles()
Return thetasks
in this combined task.default Collection
<FileScanTask> tasks()
Returns scan tasks in this group.Methods inherited from interface org.apache.iceberg.ScanTask
asDataTask, asFileScanTask, isDataTask, isFileScanTask
Methods inherited from interface org.apache.iceberg.ScanTaskGroup
estimatedRowsCount, filesCount, groupingKey, sizeBytes
-
Method Details
-
files
Collection<FileScanTask> files()Return thetasks
in this combined task.- Returns:
- a Collection of FileScanTask instances.
-
tasks
Description copied from interface:ScanTaskGroup
Returns scan tasks in this group.- Specified by:
tasks
in interfaceScanTaskGroup<FileScanTask>
-
asCombinedScanTask
Description copied from interface:ScanTask
Returns this cast toCombinedScanTask
if it is one- Specified by:
asCombinedScanTask
in interfaceScanTask
- Returns:
- this cast to
CombinedScanTask
if it is one
-