Package com.skyhookwireless.wps
Interface WPSLocationCallback
-
public interface WPSLocationCallback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
done()
Called when WPS is ready for further requests.WPSContinuation
handleError(WPSReturnCode error)
Called when WPS encounters an error.void
handleWPSLocation(WPSLocation location)
-
-
-
Method Detail
-
handleWPSLocation
void handleWPSLocation(WPSLocation location)
-
done
void done()
Called when WPS is ready for further requests. No WPS methods may be called until after this method returns, once a WPS method which uses a callback has been called. In other words, only one WPS operation may be active at any time.
-
handleError
WPSContinuation handleError(WPSReturnCode error)
Called when WPS encounters an error. WPS_STOP should be returned to signal that the current operation should stop. WPS_CONTINUE should be returned to signal that the current operation should continue. In some circumstances WPS may choose to stop even though WPS_CONTINUE was returned.- Parameters:
error
- error code
-
-