Package com.iizix.geo
Interface ILocationListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ILocationListener
Callback interface used in the location serviceILocationService
and forGeoProps
.- Author:
- Christopher Mindus
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onLocationChanged(IClientSessionGyro clientGyro, DeviceLocation deviceLocation)
Called when the device location has been received or changed.
Method Detail
onLocationChanged
void onLocationChanged(IClientSessionGyro clientGyro, DeviceLocation deviceLocation)
Called when the device location has been received or changed.The
clientGyro
parameter is always set when the location has been updated when the program is running in the foreground and that the client is a browser or the program does not support background location updates.- Parameters:
clientGyro
- The client session's gyro when possible to find, null otherwise.deviceLocation
- The device location.