NdsStoreUpdateConfig

class NdsStoreUpdateConfig(val updateStoragePath: File, val persistentStoragePath: File, val updateServerUri: Uri? = null, val updateServerApiKey: String? = null, val locale: Locale = DEFAULT_LOCALE, val automaticUpdatesConfiguration: NdsStoreUpdateConfig.AutomaticUpdatesConfiguration = DEFAULT_AUTOMATIC_UPDATES_CONFIGURATION)

Configuration of updates of the NdsStore.

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
constructor(updateStoragePath: File, persistentStoragePath: File, updateServerUri: Uri? = null, updateServerApiKey: String? = null, locale: Locale = DEFAULT_LOCALE, automaticUpdatesConfiguration: NdsStoreUpdateConfig.AutomaticUpdatesConfiguration = DEFAULT_AUTOMATIC_UPDATES_CONFIGURATION)

Types

Link copied to clipboard
class AutomaticUpdatesConfiguration(val allRegionsEnabled: Boolean = false, val relevantRegionsEnabled: Boolean = false, val relevantRegionsRadius: Distance = Distance.ZERO, val relevantRegionsUpdateInterval: Duration = Duration.ZERO, val regionsAlongRouteEnabled: Boolean = false, val regionsAlongRouteRadius: Distance = Distance.ZERO)

Configuration of automatic updates parameters of the NdsStore.

Link copied to clipboard
object Companion

Represents default values for NdsStoreUpdateConfig constructor.

Properties

Link copied to clipboard
Link copied to clipboard

The locale whose language will be used for names of map regions in region graph. If the map does not support the language, the best matched language in the map will be used.

Link copied to clipboard

: File, The path to the persistent directory for map updates. For some functionality (e.g. recovery from unexpected failures) data may have to be persisted at this location.

Link copied to clipboard

The API key used for requests to the map updates server that was specified in updateServerUri. If not specified, the key parameter will not be present in requests.

Link copied to clipboard
val updateServerUri: Uri? = null

: Uri, The URI of the server to download updates from. Defaults to the TomTom production update server.

Link copied to clipboard

The local path to the update packages directory. The directory provided must be writable. After a successful update of an update region, all update files for that update region are deleted.

Functions

Link copied to clipboard
fun copy(updateStoragePath: File = this.updateStoragePath, persistentStoragePath: File = this.persistentStoragePath, updateServerUri: Uri? = this.updateServerUri, updateServerApiKey: String? = this.updateServerApiKey, locale: Locale = this.locale, automaticUpdatesConfiguration: NdsStoreUpdateConfig.AutomaticUpdatesConfiguration = this.automaticUpdatesConfiguration): NdsStoreUpdateConfig

Returns a copy of calling NdsStoreUpdateConfig object with possibilities to override every properties.

Link copied to clipboard
open override fun toString(): String