fastestLocationUpdateInterval property

int? fastestLocationUpdateInterval
final

[Android only] Explicitly set the fastest interval for location updates, in milliseconds.

This controls the fastest rate at which your application will receive location updates, which might be faster than GeoConfig.locationUpdateInterval in some situations (for example, if other applications are triggering location updates).

This allows your application to passively acquire locations at a rate faster than it actively acquires locations, saving power.

Unlike GeoConfig.locationUpdateInterval, this parameter is exact. Your application will never receive updates faster than this value.

If you don't call this method, a fastest interval will be set to 30000 (30s).

An interval of 0 is allowed, but not recommended, since location updates may be extremely fast on future implementations.

If fastestLocationUpdateInterval is set slower than GeoConfig.locationUpdateInterval, then your effective fastest interval is GeoConfig.locationUpdateInterval.

Note: See Android docs

Implementation

final int? fastestLocationUpdateInterval;