Package com.navmii.sdk.routenavigation
Interface ReroutingListener
-
public interface ReroutingListener
Interface allowing to receive notifications about changes in the status of the automatic rerouting handling process.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onReroutingFinished(Route newRoute)
The method is called once automatic rerouting handling process finishes.void
onReroutingStarted()
The method is called once automatic rerouting handling process starts.
-
-
-
Method Detail
-
onReroutingStarted
void onReroutingStarted()
The method is called once automatic rerouting handling process starts.
-
onReroutingFinished
void onReroutingFinished(Route newRoute)
The method is called once automatic rerouting handling process finishes.- Parameters:
newRoute
- New route being navigated after the rerouting is handled and 'null' if user has returned to the route and no rerouting handling is required.
-
-