interface MatchResultVisitor
A visitor of matcher results, implementing the visitor design pattern. It operates on {@link MatcherResult} and its subtypes.
abstract fun visit(result: RouteMatchResult): Unit
Visit and process the route matcher result. abstract fun visit(result: MapMatchResult): Unit
Visit and process the map matcher result. |