package com.mapbox.mapboxsdk.plugins.locationlayer; /** * Listener that can be added as a callback when the last location update * is considered stale. *

* The time from the last location update that determines if a location update * is stale or not is provided by {@link LocationLayerOptions#staleStateTimeout()}. */ public interface OnLocationStaleListener { void onStaleStateChange(boolean isStale); }