Updated XMLIterator for splitting on different nodes #436

Merged
alessia.bardi merged 3 commits from dblp_collection_plugin into beta 2024-05-29 16:05:07 +02:00
1 changed files with 0 additions and 16 deletions
Showing only changes of commit e8a61d5dd5 - Show all commits

View File

@ -1,16 +0,0 @@
package eu.dnetlib.dhp.collection.plugin.gzip;
import eu.dnetlib.dhp.collection.ApiDescriptor;
import eu.dnetlib.dhp.collection.plugin.CollectorPlugin;
import eu.dnetlib.dhp.common.aggregation.AggregatorReport;
import eu.dnetlib.dhp.common.collection.CollectorException;
import java.util.stream.Stream;
public class GzipCollectorPlugin implements CollectorPlugin {
@Override
public Stream<String> collect(ApiDescriptor api, AggregatorReport report) throws CollectorException {
return Stream.empty();
}
}