Package com.iizix.server.geo
Class UserLocationHistory
java.lang.Object
com.iizix.server.geo.UserLocationHistory
- All Implemented Interfaces:
IUserLocationHistory
The implementation of the user location history.
- Author:
- Christopher Mindus
Constructor Summary
Method Summary
Modifier and TypeMethodDescriptionboolean
addLocationListener
(IAppSessionGyro appGyro, IUserLocationListener listener) Adds a listener for changes in the user's location.boolean
addLocationListener
(IClientSessionGyro clientGyro, IUserLocationListener listener) Adds a listener for changes in the user's location.boolean
Checks for equality.findNearbyUsers
(double maximumDistance, long maximumAge, boolean useAltitude) Finds nearby users from the latest known location in history with a max given distance and a maximum age of the users location.Returns the latest known location of the user received by the server (approximation).Returns the array of user locations.Returns the authenticated user.int
hashCode()
Gets the hash code.boolean
removeLocationListener
(IUserLocationListener listener) Removes a listener for changes in the user's location.toString()
String representation of the class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.iizix.user.geo.IUserLocationHistory
findNearbyUsers
Constructor Details
UserLocationHistory
Constructor.- Parameters:
user
- The authenticated user.
Method Details
getUserInformation
Returns the authenticated user.- Specified by:
getUserInformation
in interfaceIUserLocationHistory
- Returns:
- The user.
getLocations
Returns the array of user locations.- Specified by:
getLocations
in interfaceIUserLocationHistory
- Returns:
- The array of user locations.
getLatestLocation
Returns the latest known location of the user received by the server (approximation). Two locations with very close timestamp might be interchanged. This method returns the last added location from an array of locations.- Specified by:
getLatestLocation
in interfaceIUserLocationHistory
- Returns:
- The most up-to-date location of the user, or null if none is found.
findNearbyUsers
Finds nearby users from the latest known location in history with a max given distance and a maximum age of the users location.The distance uses the Haversine method for calculation.
- Specified by:
findNearbyUsers
in interfaceIUserLocationHistory
- Parameters:
maximumDistance
- The maximum distance in meters.maximumAge
- The maximum age of the users location in milliseconds.useAltitude
- Flag to use the altitude in the distance calculation or not.- Returns:
- A list of nearby users. Do not assume that the list is sorted by timestamp.
addLocationListener
Adds a listener for changes in the user's location. This method will add a dispose listener to the client session and remove the listener if not already done.Calling this method twice with the same listener will not cause it to be added again.
- Specified by:
addLocationListener
in interfaceIUserLocationHistory
- Parameters:
appGyro
- The client session owning the listener.listener
- The listener.- Returns:
- true for success, false if listener is already added or if client session is disposed of.
addLocationListener
Adds a listener for changes in the user's location. This method will add a dispose listener to the client session and remove the listener if not already done.Calling this method twice with the same listener will not cause it to be added again.
- Specified by:
addLocationListener
in interfaceIUserLocationHistory
- Parameters:
clientGyro
- The client session owning the listener.listener
- The listener.- Returns:
- true for success, false if listener is already added or if client session is disposed of.
removeLocationListener
Removes a listener for changes in the user's location.- Specified by:
removeLocationListener
in interfaceIUserLocationHistory
- Parameters:
listener
- The listener.- Returns:
- true for success, false if listener is not previously added or has been removed.
equals
Checks for equality.hashCode
public int hashCode()Gets the hash code.toString
String representation of the class.