
org.opentripplanner.updater.GraphUpdaterStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
The newest version!
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