Interface PathSessionListener
-
- All Implemented Interfaces:
public interface PathSessionListener
-
-
Method Summary
Modifier and Type Method Description Unit
onPathSessionCalculatedPath(PathSession pathSession, Path calculatedPath)
Notified when path session calculates a periodically updated path Unit
onPathSessionUpdatedState(PathSession pathSession, PathSessionState sessionState)
Notified when path session state is updated Unit
onPathSessionCalculatedLiveDirection(PathSession pathSession, LiveDirection liveDirection)
Notified when path session is updated with a live direction. -
-
Method Detail
-
onPathSessionCalculatedPath
Unit onPathSessionCalculatedPath(PathSession pathSession, Path calculatedPath)
Notified when path session calculates a periodically updated path
- Parameters:
calculatedPath
- Calculated path
-
onPathSessionUpdatedState
Unit onPathSessionUpdatedState(PathSession pathSession, PathSessionState sessionState)
Notified when path session state is updated
-
onPathSessionCalculatedLiveDirection
Unit onPathSessionCalculatedLiveDirection(PathSession pathSession, LiveDirection liveDirection)
Notified when path session is updated with a live direction. This is generally used to show the user the next step they need to take.
-
-
-
-