public interface DataLoader
数据提供者
加载数据文件的接口。
DataProvider
Modifier and Type | Method and Description |
---|---|
void |
loadData(InputStream input, String name)
从流中加载数据。
|
boolean |
stillAcceptsData()
检查加载器是否仍然接受新数据。
|
boolean stillAcceptsData()
此方法用于通过在加载器找到等待的数据时中断数据集的爬取来加快数据加载速度。对于可以从任意数量的来源合并数据的加载器(例如JPL星历或分布在多个文件中的地球定向参数),此方法应始终返回true,以确保没有数据遗漏。
void loadData(InputStream input, String name) throws IOException, ParseException
input
- 数据输入流
name
- 文件名(或zip条目)
IOException
- 如果无法读取数据
ParseException
- 如果无法解析数据或发生某些特定于加载器的错误
Copyright © 2002-2023 CS GROUP. All rights reserved.