Package com.geouniq.android
Interface GeoUniq.ITrackingListener
-
- Enclosing class:
- GeoUniq
public static interface GeoUniq.ITrackingListenerDefines methods to receive a callback when a new position update is detected and sent to GeoUniq analytics platform.
Implementing this interface is necessary to call the methods
GeoUniq.registerTrackingListener(Class)andGeoUniq.removeTrackingListener(Class).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonNewPositionUpdate(android.content.Context context, GeoUniq.Location location)Callback method called when a new position update is detected.
-
-
-
Method Detail
-
onNewPositionUpdate
void onNewPositionUpdate(android.content.Context context, GeoUniq.Location location)Callback method called when a new position update is detected.- Parameters:
context- The Application Context.location- The detected location.
-
-