
org.opentripplanner.updater.GraphUpdaterStatus Maven / Gradle / Ivy
package org.opentripplanner.updater;
import java.util.List;
import java.util.Map;
/**
* This is a read-only API for a GraphUpdaterManager, that can be safely used in the APIs to query
* the state of the updaters
*/
public interface GraphUpdaterStatus {
int numberOfUpdaters();
List listUnprimedUpdaters();
Map getUpdaterDescriptions();
Class> getUpdaterClass(int id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy