Package com.geouniq.android
Interface GeoUniq.ILocationsReceiver
-
- Enclosing class:
- GeoUniq
public static interface GeoUniq.ILocationsReceiverInterface to receive callbacks when callingGeoUniq.getLocationHistory(Date, Date, boolean, ILocationsReceiver).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonError()Callback method called when an error occurs during the communication with GeoUniq Analytics cloud platform.voidonSuccess(java.util.LinkedList<GeoUniq.Location> locations)Callback method called to return the list of positions retrieved form GeoUniq Analytics cloud platform.
-
-
-
Method Detail
-
onSuccess
void onSuccess(java.util.LinkedList<GeoUniq.Location> locations)
Callback method called to return the list of positions retrieved form GeoUniq Analytics cloud platform.- Parameters:
locations- aLinkedListofGeoUniq.Locationobjects
-
onError
void onError()
Callback method called when an error occurs during the communication with GeoUniq Analytics cloud platform.
-
-