
org.opentripplanner.astar.spi.TraverseVisitor 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.astar.spi;
public interface TraverseVisitor<
State extends AStarState, Edge extends AStarEdge
> {
/** Called when A* explores an edge */
void visitEdge(Edge edge);
/** Called when A* dequeues a vertex */
void visitVertex(State state);
/** Called when A* enqueues a vertex */
void visitEnqueue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy