
com.conveyal.gtfs.loader.SQLEntityFetcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gtfs-lib Show documentation
Show all versions of gtfs-lib Show documentation
A library to load and index GTFS feeds of arbitrary size using disk-backed storage
package com.conveyal.gtfs.loader;
import java.sql.PreparedStatement;
/**
* Created by abyrd on 2017-04-04
*/
public abstract class SQLEntityFetcher implements Iterable {
EntityPopulator entityPopulator;
public SQLEntityFetcher (PreparedStatement fetchAllStatement, EntityPopulator entityPopulator) {
this.entityPopulator = entityPopulator;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy