Builder
class Builder
Builder for NdsStoreUpdateConfiguration. Use with NdsStoreConfiguration.buildUpdateConfiguration to customize the update configuration when creating an instance of NdsStore.
Example usage:
val ndsStore = NdsStore(
ndsStorePath = File("ndsStore_path"),
apiKey = "myApiKey",
context = context,
) {
updateConfiguration = buildUpdateConfiguration { // NdsStoreUpdateConfiguration.Builder.() -> Unit
mapDiskUsageQuota = Memory.gibibytes(50)
}
}Content copied to clipboard
Properties
Link copied to clipboard
Network configuration for manual map operations. Default to DEFAULT_MANUAL_UPDATE_NETWORK_CONFIGURATION
Link copied to clipboard
The maximum disk space to use by the NDS map. Default to null (unlimited).
Link copied to clipboard
The path to the persistent directory for map updates.
Link copied to clipboard
The URI of the service to download updates from. Default to DEFAULT_SERVICE_URI.
Link copied to clipboard
The local path to the update packages directory.