Class RouteTracker.SpeechEngineReadyEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.esri.arcgisruntime.navigation.RouteTracker.SpeechEngineReadyEvent
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- RouteTracker
public static final class RouteTracker.SpeechEngineReadyEvent extends java.util.EventObject
Called byRouteTracker
before a newRouteTracker.NewVoiceGuidanceEvent
is raised to check if the speech engine is busy. If it is busy it will postpone raising the voice guidance event until nextRouteTracker.trackLocationAsync(LocationDataSource.Location)
will be called.- Since:
- 100.12.0
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
getReadyStatus()
Gets if the speech engine is free and ready for text.RouteTracker
getSource()
void
setReadyStatus​(boolean readyStatus)
If the speech engine is free and ready for text set to true, otherwise set to false.
-
-
-
Method Detail
-
getSource
public RouteTracker getSource()
- Overrides:
getSource
in classjava.util.EventObject
-
getReadyStatus
public boolean getReadyStatus()
Gets if the speech engine is free and ready for text.- Returns:
- the ready status
- Since:
- 100.12.0
-
setReadyStatus
public void setReadyStatus​(boolean readyStatus)
If the speech engine is free and ready for text set to true, otherwise set to false.- Parameters:
readyStatus
- true if the speech engine is free and ready for text, otherwise false- Since:
- 100.12.0
-
-